Package org.yamcs.protobuf
Enum ServiceState
- java.lang.Object
-
- java.lang.Enum<ServiceState>
-
- org.yamcs.protobuf.ServiceState
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<ServiceState>
public enum ServiceState extends Enum<ServiceState> implements com.google.protobuf.ProtocolMessageEnum
service states coming from guava (numbers have to correspond)
Protobuf enumyamcs.protobuf.yamcsManagement.ServiceState
-
-
Field Summary
Fields Modifier and Type Field Description static intFAILED_VALUEFAILED = 5;static intNEW_VALUENEW = 0;static intRUNNING_VALUERUNNING = 2;static intSTARTING_VALUESTARTING = 1;static intSTOPPING_VALUESTOPPING = 3;static intTERMINATED_VALUETERMINATED = 4;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ServiceStateforNumber(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<ServiceState>internalGetValueMap()static ServiceStatevalueOf(int value)Deprecated.static ServiceStatevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static ServiceStatevalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final ServiceState NEW
NEW = 0;
-
STARTING
public static final ServiceState STARTING
STARTING = 1;
-
RUNNING
public static final ServiceState RUNNING
RUNNING = 2;
-
STOPPING
public static final ServiceState STOPPING
STOPPING = 3;
-
TERMINATED
public static final ServiceState TERMINATED
TERMINATED = 4;
-
FAILED
public static final ServiceState FAILED
FAILED = 5;
-
-
Field Detail
-
NEW_VALUE
public static final int NEW_VALUE
NEW = 0;- See Also:
- Constant Field Values
-
STARTING_VALUE
public static final int STARTING_VALUE
STARTING = 1;- See Also:
- Constant Field Values
-
RUNNING_VALUE
public static final int RUNNING_VALUE
RUNNING = 2;- See Also:
- Constant Field Values
-
STOPPING_VALUE
public static final int STOPPING_VALUE
STOPPING = 3;- See Also:
- Constant Field Values
-
TERMINATED_VALUE
public static final int TERMINATED_VALUE
TERMINATED = 4;- See Also:
- Constant Field Values
-
FAILED_VALUE
public static final int FAILED_VALUE
FAILED = 5;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ServiceState[] 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 (ServiceState c : ServiceState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceState 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 ServiceState 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 ServiceState forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ServiceState> 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 ServiceState 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
-
-