Class ABIDefinition.Type

java.lang.Object
org.fisco.bcos.sdk.abi.wrapper.ABIDefinition.Type
Enclosing class:
ABIDefinition

public static class ABIDefinition.Type
extends java.lang.Object
  • Field Summary

    Fields 
    Modifier and Type Field Description
    java.util.List<java.lang.Integer> dimensions  
    java.lang.String rawType  
    java.lang.String type  
  • Constructor Summary

    Constructors 
    Constructor Description
    Type​(java.lang.String name)  
  • Method Summary

    Modifier and Type Method Description
    java.util.List<java.lang.Integer> getDimensions()  
    java.lang.Integer getLastDimension()  
    java.lang.String getRawType()  
    java.lang.String getType()  
    boolean isDynamicList()  
    boolean isFixedList()  
    boolean isList()  
    ABIDefinition.Type reduceDimensionAndGetType()  
    void setDimensions​(java.util.List<java.lang.Integer> dimensions)  
    void setRawType​(java.lang.String rawType)  
    void setType​(java.lang.String type)  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • type

      public java.lang.String type
    • rawType

      public java.lang.String rawType
    • dimensions

      public java.util.List<java.lang.Integer> dimensions
  • Constructor Details

    • Type

      public Type​(java.lang.String name)
  • Method Details