Enum KubernetesHandler.DeployPriority
- java.lang.Object
-
- java.lang.Enum<KubernetesHandler.DeployPriority>
-
- com.netflix.spinnaker.clouddriver.kubernetes.op.handler.KubernetesHandler.DeployPriority
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<KubernetesHandler.DeployPriority>
- Enclosing class:
- KubernetesHandler
public static enum KubernetesHandler.DeployPriority extends java.lang.Enum<KubernetesHandler.DeployPriority>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KubernetesHandler.DeployPriorityfromString(java.lang.String val)static KubernetesHandler.DeployPriorityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static KubernetesHandler.DeployPriority[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOWEST_PRIORITY
public static final KubernetesHandler.DeployPriority LOWEST_PRIORITY
-
WORKLOAD_ATTACHMENT_PRIORITY
public static final KubernetesHandler.DeployPriority WORKLOAD_ATTACHMENT_PRIORITY
-
WORKLOAD_CONTROLLER_PRIORITY
public static final KubernetesHandler.DeployPriority WORKLOAD_CONTROLLER_PRIORITY
-
WORKLOAD_PRIORITY
public static final KubernetesHandler.DeployPriority WORKLOAD_PRIORITY
-
WORKLOAD_MODIFIER_PRIORITY
public static final KubernetesHandler.DeployPriority WORKLOAD_MODIFIER_PRIORITY
-
PDB_PRIORITY
public static final KubernetesHandler.DeployPriority PDB_PRIORITY
-
API_SERVICE_PRIORITY
public static final KubernetesHandler.DeployPriority API_SERVICE_PRIORITY
-
NETWORK_RESOURCE_PRIORITY
public static final KubernetesHandler.DeployPriority NETWORK_RESOURCE_PRIORITY
-
MOUNTABLE_DATA_PRIORITY
public static final KubernetesHandler.DeployPriority MOUNTABLE_DATA_PRIORITY
-
MOUNTABLE_DATA_BACKING_RESOURCE_PRIORITY
public static final KubernetesHandler.DeployPriority MOUNTABLE_DATA_BACKING_RESOURCE_PRIORITY
-
SERVICE_ACCOUNT_PRIORITY
public static final KubernetesHandler.DeployPriority SERVICE_ACCOUNT_PRIORITY
-
STORAGE_CLASS_PRIORITY
public static final KubernetesHandler.DeployPriority STORAGE_CLASS_PRIORITY
-
ADMISSION_PRIORITY
public static final KubernetesHandler.DeployPriority ADMISSION_PRIORITY
-
RESOURCE_DEFINITION_PRIORITY
public static final KubernetesHandler.DeployPriority RESOURCE_DEFINITION_PRIORITY
-
ROLE_BINDING_PRIORITY
public static final KubernetesHandler.DeployPriority ROLE_BINDING_PRIORITY
-
ROLE_PRIORITY
public static final KubernetesHandler.DeployPriority ROLE_PRIORITY
-
NAMESPACE_PRIORITY
public static final KubernetesHandler.DeployPriority NAMESPACE_PRIORITY
-
-
Method Detail
-
values
public static KubernetesHandler.DeployPriority[] 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 (KubernetesHandler.DeployPriority c : KubernetesHandler.DeployPriority.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KubernetesHandler.DeployPriority valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static KubernetesHandler.DeployPriority fromString(java.lang.String val)
-
-