Package org.yamcs.protobuf
Enum ProcessorRequest.Operation
- java.lang.Object
-
- java.lang.Enum<ProcessorRequest.Operation>
-
- org.yamcs.protobuf.ProcessorRequest.Operation
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<ProcessorRequest.Operation>
- Enclosing class:
- ProcessorRequest
public static enum ProcessorRequest.Operation extends Enum<ProcessorRequest.Operation> implements com.google.protobuf.ProtocolMessageEnum
Protobuf enumyamcs.protobuf.yamcsManagement.ProcessorRequest.Operation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANGE_SPEEDCHANGE_SPEED = 5;PAUSEPAUSE = 2;RESUMERESUME = 3;SEEKSEEK = 4;
-
Field Summary
Fields Modifier and Type Field Description static intCHANGE_SPEED_VALUECHANGE_SPEED = 5;static intPAUSE_VALUEPAUSE = 2;static intRESUME_VALUERESUME = 3;static intSEEK_VALUESEEK = 4;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ProcessorRequest.OperationforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<ProcessorRequest.Operation>internalGetValueMap()static ProcessorRequest.OperationvalueOf(int value)Deprecated.static ProcessorRequest.OperationvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static ProcessorRequest.OperationvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessorRequest.Operation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAUSE
public static final ProcessorRequest.Operation PAUSE
PAUSE = 2;
-
RESUME
public static final ProcessorRequest.Operation RESUME
RESUME = 3;
-
SEEK
public static final ProcessorRequest.Operation SEEK
SEEK = 4;
-
CHANGE_SPEED
public static final ProcessorRequest.Operation CHANGE_SPEED
CHANGE_SPEED = 5;
-
-
Field Detail
-
PAUSE_VALUE
public static final int PAUSE_VALUE
PAUSE = 2;- See Also:
- Constant Field Values
-
RESUME_VALUE
public static final int RESUME_VALUE
RESUME = 3;- See Also:
- Constant Field Values
-
SEEK_VALUE
public static final int SEEK_VALUE
SEEK = 4;- See Also:
- Constant Field Values
-
CHANGE_SPEED_VALUE
public static final int CHANGE_SPEED_VALUE
CHANGE_SPEED = 5;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ProcessorRequest.Operation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProcessorRequest.Operation c : ProcessorRequest.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessorRequest.Operation 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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static ProcessorRequest.Operation valueOf(int value)
Deprecated.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.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
forNumber
public static ProcessorRequest.Operation forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ProcessorRequest.Operation> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static ProcessorRequest.Operation valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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.)- Parameters:
desc- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-