Enum Class Wire.Packet.PacketType
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Wire.Packet.PacketType>
,Constable
- Enclosing class:
Wire.Packet
public static enum Wire.Packet.PacketType
extends Enum<Wire.Packet.PacketType>
implements com.google.protobuf.ProtocolMessageEnum
Protobuf enum
fsutil.types.Packet.PacketType
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPACKET_DATA = 2;
PACKET_ERR = 4;
PACKET_FIN = 3;
PACKET_REQ = 1;
PACKET_STAT = 0;
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
PACKET_DATA = 2;
static final int
PACKET_ERR = 4;
static final int
PACKET_FIN = 3;
static final int
PACKET_REQ = 1;
static final int
PACKET_STAT = 0;
-
Method Summary
Modifier and TypeMethodDescriptionstatic Wire.Packet.PacketType
forNumber
(int value) static final com.google.protobuf.Descriptors.EnumDescriptor
final com.google.protobuf.Descriptors.EnumDescriptor
final int
final com.google.protobuf.Descriptors.EnumValueDescriptor
static com.google.protobuf.Internal.EnumLiteMap
<Wire.Packet.PacketType> static Wire.Packet.PacketType
valueOf
(int value) Deprecated.static Wire.Packet.PacketType
valueOf
(com.google.protobuf.Descriptors.EnumValueDescriptor desc) Returns the enum constant of this class with the specified name.static Wire.Packet.PacketType
Returns the enum constant of this class with the specified name.static Wire.Packet.PacketType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PACKET_STAT
PACKET_STAT = 0;
-
PACKET_REQ
PACKET_REQ = 1;
-
PACKET_DATA
PACKET_DATA = 2;
-
PACKET_FIN
PACKET_FIN = 3;
-
PACKET_ERR
PACKET_ERR = 4;
-
UNRECOGNIZED
-
-
Field Details
-
PACKET_STAT_VALUE
public static final int PACKET_STAT_VALUEPACKET_STAT = 0;
- See Also:
-
PACKET_REQ_VALUE
public static final int PACKET_REQ_VALUEPACKET_REQ = 1;
- See Also:
-
PACKET_DATA_VALUE
public static final int PACKET_DATA_VALUEPACKET_DATA = 2;
- See Also:
-
PACKET_FIN_VALUE
public static final int PACKET_FIN_VALUEPACKET_FIN = 3;
- See Also:
-
PACKET_ERR_VALUE
public static final int PACKET_ERR_VALUEPACKET_ERR = 4;
- 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()- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
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 com.google.protobuf.Internal.EnumLiteMap<Wire.Packet.PacketType> internalGetValueMap() -
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() -
valueOf
public static Wire.Packet.PacketType valueOf(com.google.protobuf.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
-