Package xg.protocol.messages
Enum Class ProtocolPrivMessages.protocolPrivMessage.messageType
java.lang.Object
java.lang.Enum<ProtocolPrivMessages.protocolPrivMessage.messageType>
xg.protocol.messages.ProtocolPrivMessages.protocolPrivMessage.messageType
- All Implemented Interfaces:
Internal.EnumLite,ProtocolMessageEnum,Serializable,Comparable<ProtocolPrivMessages.protocolPrivMessage.messageType>,Constable
- Enclosing class:
- ProtocolPrivMessages.protocolPrivMessage
public static enum ProtocolPrivMessages.protocolPrivMessage.messageType
extends Enum<ProtocolPrivMessages.protocolPrivMessage.messageType>
implements ProtocolMessageEnum
Protobuf enum
xg.protocol.messages.protocolPrivMessage.messageType-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe message is an ACKResquests that a protocol be disabled on the channelRequests that a protocol be enabled on the channelInvalid messageSent to notify the remote of identity -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe message is an ACKstatic final intResquests that a protocol be disabled on the channelstatic final intRequests that a protocol be enabled on the channelstatic final intInvalid messagestatic final intSent to notify the remote of identity -
Method Summary
Modifier and TypeMethodDescriptionforNumber(int value) static final Descriptors.EnumDescriptorReturn the enum type's descriptor, which contains information about each defined value, etc.final intReturn the value's numeric value as defined in the .proto file.Return the value's descriptor, which contains information such as value name, number, and type.valueOf(int value) Deprecated.Returns the enum constant of this class with the specified name.Returns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INVALID
Invalid message
INVALID = 0; -
NOTIFY_IDENTITY
Sent to notify the remote of identity
NOTIFY_IDENTITY = 1; -
ENABLE_PROTOCOL
Requests that a protocol be enabled on the channel
ENABLE_PROTOCOL = 2; -
DISABLE_PROTOCOL
Resquests that a protocol be disabled on the channel
DISABLE_PROTOCOL = 3; -
ACK
The message is an ACK
ACK = 255; -
UNRECOGNIZED
-
-
Field Details
-
INVALID_VALUE
public static final int INVALID_VALUEInvalid message
INVALID = 0;- See Also:
-
NOTIFY_IDENTITY_VALUE
public static final int NOTIFY_IDENTITY_VALUESent to notify the remote of identity
NOTIFY_IDENTITY = 1;- See Also:
-
ENABLE_PROTOCOL_VALUE
public static final int ENABLE_PROTOCOL_VALUERequests that a protocol be enabled on the channel
ENABLE_PROTOCOL = 2;- See Also:
-
DISABLE_PROTOCOL_VALUE
public static final int DISABLE_PROTOCOL_VALUEResquests that a protocol be disabled on the channel
DISABLE_PROTOCOL = 3;- See Also:
-
ACK_VALUE
public static final int ACK_VALUEThe message is an ACK
ACK = 255;- See Also:
-
-
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()Description copied from interface:ProtocolMessageEnumReturn the value's numeric value as defined in the .proto file.- Specified by:
getNumberin interfaceInternal.EnumLite- Specified by:
getNumberin interfaceProtocolMessageEnum
-
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
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static Internal.EnumLiteMap<ProtocolPrivMessages.protocolPrivMessage.messageType> internalGetValueMap() -
getValueDescriptor
Description copied from interface:ProtocolMessageEnumReturn the value's descriptor, which contains information such as value name, number, and type.- Specified by:
getValueDescriptorin interfaceProtocolMessageEnum
-
getDescriptorForType
Description copied from interface:ProtocolMessageEnumReturn the enum type's descriptor, which contains information about each defined value, etc.- Specified by:
getDescriptorForTypein interfaceProtocolMessageEnum
-
getDescriptor
-
valueOf
public static ProtocolPrivMessages.protocolPrivMessage.messageType valueOf(Descriptors.EnumValueDescriptor desc) 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:
desc- 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
-