Package org.openziti.edge.proto
Enum EdgeClient.Flag
-
- All Implemented Interfaces:
-
com.google.protobuf.Internal.EnumLite
public enum EdgeClient.Flag implements Internal.EnumLiteProtobuf enum
ziti.edge_client.pb.Flag
-
-
Field Summary
Fields Modifier and Type Field Description public final static intZERO_VALUEpublic final static intFIN_VALUEpublic final static intTRACE_UUID_VALUEpublic final static intMULTIPART_VALUEpublic final static intSTREAM_VALUEpublic final static intMULTIPART_MSG_VALUE
-
Enum Constant Summary
Enum Constants Enum Constant Description ZEROZERO = 0;FINFIN is an edge payload flag used to signal communication endsFIN = 1;TRACE_UUIDTRACE_UUID indicates that peer will send data messages with specially constructed UUID headersTRACE_UUID = 2;MULTIPARTMULTIPART indicates that peer can accept multipart data messagesMULTIPART = 4;STREAMSTREAM indicates connection with stream semantics this allows consolidation of payloads to lower overheadSTREAM = 8;MULTIPART_MSGMULTIPART_MSG set on data message with multiple payloadsMULTIPART_MSG = 16;UNRECOGNIZED
-
Method Summary
Modifier and Type Method Description final intgetNumber()static EdgeClient.FlagvalueOf(int value)static EdgeClient.FlagforNumber(int value)static Internal.EnumLiteMap<EdgeClient.Flag>internalGetValueMap()static Internal.EnumVerifierinternalGetVerifier()static Array<EdgeClient.Flag>values()Returns an array containing the constants of this enum type, in the order they're declared. static EdgeClient.FlagvalueOf(String name)Returns the enum constant of this type with the specified name. -
-
Method Detail
-
getNumber
final int getNumber()
-
valueOf
@Deprecated() static EdgeClient.Flag valueOf(int value)
- Parameters:
value- The number of the enum to look for.- Returns:
The enum associated with the given number.
-
forNumber
static EdgeClient.Flag forNumber(int value)
-
internalGetValueMap
static Internal.EnumLiteMap<EdgeClient.Flag> internalGetValueMap()
-
internalGetVerifier
static Internal.EnumVerifier internalGetVerifier()
-
values
static Array<EdgeClient.Flag> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static EdgeClient.Flag valueOf(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.)
- Returns:
the enum constant with the specified name
-
-
-
-