Enum Common.Rep

  • All Implemented Interfaces:
    com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, java.io.Serializable, java.lang.Comparable<Common.Rep>
    Enclosing class:
    Common

    public static enum Common.Rep
    extends java.lang.Enum<Common.Rep>
    implements com.google.protobuf.ProtocolMessageEnum
    Protobuf enum Rep
    • Enum Constant Detail

      • PRIMITIVE_BOOLEAN

        public static final Common.Rep PRIMITIVE_BOOLEAN
        PRIMITIVE_BOOLEAN = 0;
      • PRIMITIVE_BYTE

        public static final Common.Rep PRIMITIVE_BYTE
        PRIMITIVE_BYTE = 1;
      • PRIMITIVE_CHAR

        public static final Common.Rep PRIMITIVE_CHAR
        PRIMITIVE_CHAR = 2;
      • PRIMITIVE_SHORT

        public static final Common.Rep PRIMITIVE_SHORT
        PRIMITIVE_SHORT = 3;
      • PRIMITIVE_INT

        public static final Common.Rep PRIMITIVE_INT
        PRIMITIVE_INT = 4;
      • PRIMITIVE_LONG

        public static final Common.Rep PRIMITIVE_LONG
        PRIMITIVE_LONG = 5;
      • PRIMITIVE_FLOAT

        public static final Common.Rep PRIMITIVE_FLOAT
        PRIMITIVE_FLOAT = 6;
      • PRIMITIVE_DOUBLE

        public static final Common.Rep PRIMITIVE_DOUBLE
        PRIMITIVE_DOUBLE = 7;
      • BOOLEAN

        public static final Common.Rep BOOLEAN
        BOOLEAN = 8;
      • BYTE

        public static final Common.Rep BYTE
        BYTE = 9;
      • CHARACTER

        public static final Common.Rep CHARACTER
        CHARACTER = 10;
      • SHORT

        public static final Common.Rep SHORT
        SHORT = 11;
      • INTEGER

        public static final Common.Rep INTEGER
        INTEGER = 12;
      • LONG

        public static final Common.Rep LONG
        LONG = 13;
      • FLOAT

        public static final Common.Rep FLOAT
        FLOAT = 14;
      • DOUBLE

        public static final Common.Rep DOUBLE
        DOUBLE = 15;
      • BIG_INTEGER

        public static final Common.Rep BIG_INTEGER
        BIG_INTEGER = 25;
      • BIG_DECIMAL

        public static final Common.Rep BIG_DECIMAL
        BIG_DECIMAL = 26;
      • JAVA_SQL_TIME

        public static final Common.Rep JAVA_SQL_TIME
        JAVA_SQL_TIME = 16;
      • JAVA_SQL_TIMESTAMP

        public static final Common.Rep JAVA_SQL_TIMESTAMP
        JAVA_SQL_TIMESTAMP = 17;
      • JAVA_SQL_DATE

        public static final Common.Rep JAVA_SQL_DATE
        JAVA_SQL_DATE = 18;
      • JAVA_UTIL_DATE

        public static final Common.Rep JAVA_UTIL_DATE
        JAVA_UTIL_DATE = 19;
      • BYTE_STRING

        public static final Common.Rep BYTE_STRING
        BYTE_STRING = 20;
      • STRING

        public static final Common.Rep STRING
        STRING = 21;
      • NUMBER

        public static final Common.Rep NUMBER
        NUMBER = 22;
      • OBJECT

        public static final Common.Rep OBJECT
        OBJECT = 23;
      • NULL

        public static final Common.Rep NULL
        NULL = 24;
      • ARRAY

        public static final Common.Rep ARRAY
        ARRAY = 27;
      • STRUCT

        public static final Common.Rep STRUCT
        STRUCT = 28;
      • MULTISET

        public static final Common.Rep MULTISET
        MULTISET = 29;
      • UNRECOGNIZED

        public static final Common.Rep UNRECOGNIZED
    • Field Detail

      • PRIMITIVE_BOOLEAN_VALUE

        public static final int PRIMITIVE_BOOLEAN_VALUE
        PRIMITIVE_BOOLEAN = 0;
        See Also:
        Constant Field Values
      • PRIMITIVE_BYTE_VALUE

        public static final int PRIMITIVE_BYTE_VALUE
        PRIMITIVE_BYTE = 1;
        See Also:
        Constant Field Values
      • PRIMITIVE_CHAR_VALUE

        public static final int PRIMITIVE_CHAR_VALUE
        PRIMITIVE_CHAR = 2;
        See Also:
        Constant Field Values
      • PRIMITIVE_SHORT_VALUE

        public static final int PRIMITIVE_SHORT_VALUE
        PRIMITIVE_SHORT = 3;
        See Also:
        Constant Field Values
      • PRIMITIVE_INT_VALUE

        public static final int PRIMITIVE_INT_VALUE
        PRIMITIVE_INT = 4;
        See Also:
        Constant Field Values
      • PRIMITIVE_LONG_VALUE

        public static final int PRIMITIVE_LONG_VALUE
        PRIMITIVE_LONG = 5;
        See Also:
        Constant Field Values
      • PRIMITIVE_FLOAT_VALUE

        public static final int PRIMITIVE_FLOAT_VALUE
        PRIMITIVE_FLOAT = 6;
        See Also:
        Constant Field Values
      • PRIMITIVE_DOUBLE_VALUE

        public static final int PRIMITIVE_DOUBLE_VALUE
        PRIMITIVE_DOUBLE = 7;
        See Also:
        Constant Field Values
      • CHARACTER_VALUE

        public static final int CHARACTER_VALUE
        CHARACTER = 10;
        See Also:
        Constant Field Values
      • BIG_INTEGER_VALUE

        public static final int BIG_INTEGER_VALUE
        BIG_INTEGER = 25;
        See Also:
        Constant Field Values
      • BIG_DECIMAL_VALUE

        public static final int BIG_DECIMAL_VALUE
        BIG_DECIMAL = 26;
        See Also:
        Constant Field Values
      • JAVA_SQL_TIME_VALUE

        public static final int JAVA_SQL_TIME_VALUE
        JAVA_SQL_TIME = 16;
        See Also:
        Constant Field Values
      • JAVA_SQL_TIMESTAMP_VALUE

        public static final int JAVA_SQL_TIMESTAMP_VALUE
        JAVA_SQL_TIMESTAMP = 17;
        See Also:
        Constant Field Values
      • JAVA_SQL_DATE_VALUE

        public static final int JAVA_SQL_DATE_VALUE
        JAVA_SQL_DATE = 18;
        See Also:
        Constant Field Values
      • JAVA_UTIL_DATE_VALUE

        public static final int JAVA_UTIL_DATE_VALUE
        JAVA_UTIL_DATE = 19;
        See Also:
        Constant Field Values
      • BYTE_STRING_VALUE

        public static final int BYTE_STRING_VALUE
        BYTE_STRING = 20;
        See Also:
        Constant Field Values
      • internalValueMap

        private static final com.google.protobuf.Internal.EnumLiteMap<Common.Rep> internalValueMap
      • VALUES

        private static final Common.Rep[] VALUES
      • value

        private final int value
    • Constructor Detail

      • Rep

        private Rep​(int value)
    • Method Detail

      • values

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

        public static Common.Rep 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
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static Common.Rep valueOf​(int value)
        Deprecated.
        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:
        value - 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
      • forNumber

        public static Common.Rep forNumber​(int value)
      • internalGetValueMap

        public static com.google.protobuf.Internal.EnumLiteMap<Common.Rep> internalGetValueMap()
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static Common.Rep valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - 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