Package protobuf_unittest
Enum UnittestProto.TestSparseEnum
- java.lang.Object
-
- java.lang.Enum<UnittestProto.TestSparseEnum>
-
- protobuf_unittest.UnittestProto.TestSparseEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UnittestProto.TestSparseEnum>
- Enclosing class:
- UnittestProto
public static enum UnittestProto.TestSparseEnum extends java.lang.Enum<UnittestProto.TestSparseEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getNumber()
java.lang.String
toString()
static UnittestProto.TestSparseEnum
valueOf(int value)
Returns the enum constant of this type with the specified name.static UnittestProto.TestSparseEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnittestProto.TestSparseEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPARSE_A
public static final UnittestProto.TestSparseEnum SPARSE_A
-
SPARSE_B
public static final UnittestProto.TestSparseEnum SPARSE_B
-
SPARSE_C
public static final UnittestProto.TestSparseEnum SPARSE_C
-
SPARSE_D
public static final UnittestProto.TestSparseEnum SPARSE_D
-
SPARSE_E
public static final UnittestProto.TestSparseEnum SPARSE_E
-
SPARSE_F
public static final UnittestProto.TestSparseEnum SPARSE_F
-
SPARSE_G
public static final UnittestProto.TestSparseEnum SPARSE_G
-
-
Method Detail
-
values
public static UnittestProto.TestSparseEnum[] 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 (UnittestProto.TestSparseEnum c : UnittestProto.TestSparseEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnittestProto.TestSparseEnum 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 namejava.lang.NullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
-
toString
public final java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<UnittestProto.TestSparseEnum>
-
valueOf
public static UnittestProto.TestSparseEnum valueOf(int value)
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 namejava.lang.NullPointerException
- if the argument is null
-
-