Package com.google.protobuf
Enum Class Syntax
- All Implemented Interfaces:
Internal.EnumLite
,Serializable
,Comparable<Syntax>
,Constable
The syntax in which a protocol buffer element is defined.Protobuf enum
google.protobuf.Syntax
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSyntax `editions`.Syntax `proto2`.Syntax `proto3`. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Internal.EnumLiteMap
<Syntax> static final int
Syntax `editions`.static final int
Syntax `proto2`.static final int
Syntax `proto3`.private final int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Syntax
forNumber
(int value) final int
static Internal.EnumLiteMap
<Syntax> static Internal.EnumVerifier
static Syntax
valueOf
(int value) Deprecated.static Syntax
Returns the enum constant of this class with the specified name.static Syntax[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SYNTAX_PROTO2
Syntax `proto2`.
SYNTAX_PROTO2 = 0;
-
SYNTAX_PROTO3
Syntax `proto3`.
SYNTAX_PROTO3 = 1;
-
SYNTAX_EDITIONS
Syntax `editions`.
SYNTAX_EDITIONS = 2;
-
UNRECOGNIZED
-
-
Field Details
-
SYNTAX_PROTO2_VALUE
public static final int SYNTAX_PROTO2_VALUESyntax `proto2`.
SYNTAX_PROTO2 = 0;
- See Also:
-
SYNTAX_PROTO3_VALUE
public static final int SYNTAX_PROTO3_VALUESyntax `proto3`.
SYNTAX_PROTO3 = 1;
- See Also:
-
SYNTAX_EDITIONS_VALUE
public static final int SYNTAX_EDITIONS_VALUESyntax `editions`.
SYNTAX_EDITIONS = 2;
- See Also:
-
internalValueMap
-
value
private final int value
-
-
Constructor Details
-
Syntax
private Syntax(int value)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()- Specified by:
getNumber
in interfaceInternal.EnumLite
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
-
internalGetValueMap
-
internalGetVerifier
-