Enum Type

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Type>

    public enum Type
    extends java.lang.Enum<Type>
    • Enum Constant Detail

      • UBYTE

        public static final Type UBYTE
      • ASCII

        public static final Type ASCII
      • USHORT

        public static final Type USHORT
      • ULONG

        public static final Type ULONG
      • RATIONAL

        public static final Type RATIONAL
      • SBYTE

        public static final Type SBYTE
      • UNDEFINED

        public static final Type UNDEFINED
      • SSHORT

        public static final Type SSHORT
      • SLONG

        public static final Type SLONG
      • SRATIONAL

        public static final Type SRATIONAL
      • FLOAT

        public static final Type FLOAT
      • DOUBLE

        public static final Type DOUBLE
    • Method Detail

      • values

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

        public static Type valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • decode

        public static Type decode​(int type)
      • getSizeInBytes

        public int getSizeInBytes()
      • getSpecificationTag

        public int getSpecificationTag()