Enum BaseDataType

    • Field Detail

      • UNSIGNED

        public final Boolean UNSIGNED
      • ALIGN_IN_STRUCT

        public final Alignment ALIGN_IN_STRUCT
      • SIZE_OF

        public final Integer SIZE_OF
      • __SIZE_OF_POINTER

        public static final int __SIZE_OF_POINTER
      • __SIZE_OF_LONG

        public static final int __SIZE_OF_LONG
      • __SIZE_OF_FLOAT

        public static final int __SIZE_OF_FLOAT
      • __SIZE_OF_DOUBLE

        public static final int __SIZE_OF_DOUBLE
      • __SIZE_OF_LONG_DOUBLE

        public static final int __SIZE_OF_LONG_DOUBLE
    • Method Detail

      • values

        public static BaseDataType[] 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 (BaseDataType c : BaseDataType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BaseDataType 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
      • getSigned_Long_Mapping

        public static BaseDataType getSigned_Long_Mapping()
      • getUnsigned_Long_Mapping

        public static BaseDataType getUnsigned_Long_Mapping()