Enum Node.ServiceState
- java.lang.Object
-
- java.lang.Enum<Node.ServiceState>
-
- com.yahoo.vespa.hosted.controller.api.integration.configserver.Node.ServiceState
-
- All Implemented Interfaces:
Serializable,Comparable<Node.ServiceState>
- Enclosing class:
- Node
public static enum Node.ServiceState extends Enum<Node.ServiceState>
Known node states with regards to service orchestration
-
-
Enum Constant Summary
Enum Constants Enum Constant Description allowedDownexpectedUppermanentlyDownunknownunorchestrated
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Node.ServiceStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Node.ServiceState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
expectedUp
public static final Node.ServiceState expectedUp
-
allowedDown
public static final Node.ServiceState allowedDown
-
permanentlyDown
public static final Node.ServiceState permanentlyDown
-
unorchestrated
public static final Node.ServiceState unorchestrated
-
unknown
public static final Node.ServiceState unknown
-
-
Method Detail
-
values
public static Node.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 (Node.ServiceState c : Node.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 Node.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
-
-