Package io.quarkus.kubernetes.deployment
Enum KubernetesConfig.DeploymentResourceKind
- java.lang.Object
-
- java.lang.Enum<KubernetesConfig.DeploymentResourceKind>
-
- io.quarkus.kubernetes.deployment.KubernetesConfig.DeploymentResourceKind
-
- All Implemented Interfaces:
Serializable,Comparable<KubernetesConfig.DeploymentResourceKind>
- Enclosing class:
- KubernetesConfig
public static enum KubernetesConfig.DeploymentResourceKind extends Enum<KubernetesConfig.DeploymentResourceKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DeploymentStatefulSet
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KubernetesConfig.DeploymentResourceKindvalueOf(String name)Returns the enum constant of this type with the specified name.static KubernetesConfig.DeploymentResourceKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Deployment
public static final KubernetesConfig.DeploymentResourceKind Deployment
-
StatefulSet
public static final KubernetesConfig.DeploymentResourceKind StatefulSet
-
-
Field Detail
-
kind
final String kind
-
-
Method Detail
-
values
public static KubernetesConfig.DeploymentResourceKind[] 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 (KubernetesConfig.DeploymentResourceKind c : KubernetesConfig.DeploymentResourceKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KubernetesConfig.DeploymentResourceKind 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
-
-