Enum PType

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

    public enum PType
    extends java.lang.Enum<PType>
    Value type enum. Each of the different types are handled differently both in generated code and the various serializers.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      static PType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static PType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • VOID

        public static final PType VOID
      • BOOL

        public static final PType BOOL
      • BYTE

        public static final PType BYTE
      • I16

        public static final PType I16
      • I32

        public static final PType I32
      • I64

        public static final PType I64
      • DOUBLE

        public static final PType DOUBLE
      • STRING

        public static final PType STRING
      • BINARY

        public static final PType BINARY
      • ENUM

        public static final PType ENUM
      • MESSAGE

        public static final PType MESSAGE
      • MAP

        public static final PType MAP
      • SET

        public static final PType SET
      • LIST

        public static final PType LIST
    • Method Detail

      • values

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

        public static PType 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
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<PType>