Enum ContainerRuntimeOperation
- java.lang.Object
-
- java.lang.Enum<ContainerRuntimeOperation>
-
- org.kie.workbench.common.screens.server.management.model.ContainerRuntimeOperation
-
- All Implemented Interfaces:
Serializable,Comparable<ContainerRuntimeOperation>
public enum ContainerRuntimeOperation extends Enum<ContainerRuntimeOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SCANSTART_CONTAINERSTART_SCANNERSTOP_CONTAINERSTOP_SCANNERUPGRADE_CONTAINER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ContainerRuntimeOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static ContainerRuntimeOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START_CONTAINER
public static final ContainerRuntimeOperation START_CONTAINER
-
STOP_CONTAINER
public static final ContainerRuntimeOperation STOP_CONTAINER
-
UPGRADE_CONTAINER
public static final ContainerRuntimeOperation UPGRADE_CONTAINER
-
SCAN
public static final ContainerRuntimeOperation SCAN
-
START_SCANNER
public static final ContainerRuntimeOperation START_SCANNER
-
STOP_SCANNER
public static final ContainerRuntimeOperation STOP_SCANNER
-
-
Method Detail
-
values
public static ContainerRuntimeOperation[] 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 (ContainerRuntimeOperation c : ContainerRuntimeOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContainerRuntimeOperation 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
-
-