Package io.quarkus.kubernetes.spi
Enum KubernetesEnvBuildItem.EnvType
- java.lang.Object
-
- java.lang.Enum<KubernetesEnvBuildItem.EnvType>
-
- io.quarkus.kubernetes.spi.KubernetesEnvBuildItem.EnvType
-
- All Implemented Interfaces:
Serializable,Comparable<KubernetesEnvBuildItem.EnvType>
- Enclosing class:
- KubernetesEnvBuildItem
public static enum KubernetesEnvBuildItem.EnvType extends Enum<KubernetesEnvBuildItem.EnvType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description configmapfieldkeyFromConfigmapkeyFromSecretsecretvar
-
Field Summary
Fields Modifier and Type Field Description booleanallowMultipleDefinitions
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmightConflictWith(KubernetesEnvBuildItem.EnvType type)static KubernetesEnvBuildItem.EnvTypevalueOf(String name)Returns the enum constant of this type with the specified name.static KubernetesEnvBuildItem.EnvType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
var
public static final KubernetesEnvBuildItem.EnvType var
-
field
public static final KubernetesEnvBuildItem.EnvType field
-
secret
public static final KubernetesEnvBuildItem.EnvType secret
-
configmap
public static final KubernetesEnvBuildItem.EnvType configmap
-
keyFromConfigmap
public static final KubernetesEnvBuildItem.EnvType keyFromConfigmap
-
keyFromSecret
public static final KubernetesEnvBuildItem.EnvType keyFromSecret
-
-
Method Detail
-
values
public static KubernetesEnvBuildItem.EnvType[] 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 (KubernetesEnvBuildItem.EnvType c : KubernetesEnvBuildItem.EnvType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KubernetesEnvBuildItem.EnvType 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
-
mightConflictWith
public boolean mightConflictWith(KubernetesEnvBuildItem.EnvType type)
-
-