Enum PiData.Type

    • Enum Constant Detail

      • BITSTRING

        public static final PiData.Type BITSTRING
        Bit String.
      • STRUCT

        public static final PiData.Type STRUCT
        Struct.
      • HEADER

        public static final PiData.Type HEADER
        Header.
      • HEADERSTACK

        public static final PiData.Type HEADERSTACK
        Header Stack.
      • HEADERUNION

        public static final PiData.Type HEADERUNION
        Header Union.
      • HEADERUNIONSTACK

        public static final PiData.Type HEADERUNIONSTACK
        Header Union Stack.
      • ENUMSTRING

        public static final PiData.Type ENUMSTRING
        Enum String.
      • ERRORSTRING

        public static final PiData.Type ERRORSTRING
        Error String.
    • Method Detail

      • values

        public static PiData.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 (PiData.Type c : PiData.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 PiData.Type 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