public enum Syntax extends Enum<Syntax> implements com.google.protobuf.ProtocolMessageEnum
The syntax in which a protocol buffer element is defined.Protobuf enum
google.protobuf.Syntax
Enum Constant and Description |
---|
SYNTAX_PROTO2
Syntax `proto2`.
|
SYNTAX_PROTO3
Syntax `proto3`.
|
UNRECOGNIZED |
Modifier and Type | Field and Description |
---|---|
static int |
SYNTAX_PROTO2_VALUE
Syntax `proto2`.
|
static int |
SYNTAX_PROTO3_VALUE
Syntax `proto3`.
|
Modifier and Type | Method and Description |
---|---|
static Syntax |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<Syntax> |
internalGetValueMap() |
static Syntax |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static Syntax |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Syntax |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Syntax[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Syntax SYNTAX_PROTO2
Syntax `proto2`.
SYNTAX_PROTO2 = 0;
public static final Syntax SYNTAX_PROTO3
Syntax `proto3`.
SYNTAX_PROTO3 = 1;
public static final Syntax UNRECOGNIZED
public static final int SYNTAX_PROTO2_VALUE
Syntax `proto2`.
SYNTAX_PROTO2 = 0;
public static final int SYNTAX_PROTO3_VALUE
Syntax `proto3`.
SYNTAX_PROTO3 = 1;
public static Syntax[] values()
for (Syntax c : Syntax.values()) System.out.println(c);
public static Syntax valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic final int getNumber()
getNumber
in interface com.google.protobuf.Internal.EnumLite
getNumber
in interface com.google.protobuf.ProtocolMessageEnum
@Deprecated public static Syntax valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static Syntax forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static com.google.protobuf.Internal.EnumLiteMap<Syntax> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor
in interface com.google.protobuf.ProtocolMessageEnum
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType
in interface com.google.protobuf.ProtocolMessageEnum
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static Syntax valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2008–2022. All rights reserved.