Enum DataType

    • Enum Constant Detail

      • INT32

        public static final DataType INT32
      • UINT32

        public static final DataType UINT32
      • INT64

        public static final DataType INT64
      • UINT64

        public static final DataType UINT64
      • STRING

        public static final DataType STRING
      • FLOAT

        public static final DataType FLOAT
      • NULL

        public static final DataType NULL
      • COUNTER32

        public static final DataType COUNTER32
      • COUNTER64

        public static final DataType COUNTER64
    • Method Detail

      • values

        public static DataType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DataType c : DataType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DataType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getValue

        public int getValue()
        Get integer value
        Returns:
        integer value
      • isSigned

        public boolean isSigned()
        Returns true if this type is signed
        Returns:
        true if this type is signed
      • is64bit

        public boolean is64bit()
        Returns true if this type is 64 bit
        Returns:
        true if this type is 64 bit
      • getByValue

        public static DataType getByValue​(int value)
        Get enum element by integer value
        Parameters:
        value - integer value
        Returns:
        enum element corresponding to given integer value or fall-back element for invalid value
      • getTypeForCompare

        public static DataType getTypeForCompare​(DataType t1,
                                                 DataType t2)
        Get type suitable for comparing two values of given types
        Parameters:
        t1 - Type 1
        t2 - Type 2
        Returns:
        resulting type