Enum KubernetesDevServicesBuildTimeConfig.Flavor
- java.lang.Object
-
- java.lang.Enum<KubernetesDevServicesBuildTimeConfig.Flavor>
-
- io.quarkus.kubernetes.client.runtime.KubernetesDevServicesBuildTimeConfig.Flavor
-
- All Implemented Interfaces:
Serializable,Comparable<KubernetesDevServicesBuildTimeConfig.Flavor>
- Enclosing interface:
- KubernetesDevServicesBuildTimeConfig
public static enum KubernetesDevServicesBuildTimeConfig.Flavor extends Enum<KubernetesDevServicesBuildTimeConfig.Flavor>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KubernetesDevServicesBuildTimeConfig.FlavorvalueOf(String name)Returns the enum constant of this type with the specified name.static KubernetesDevServicesBuildTimeConfig.Flavor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
kind
public static final KubernetesDevServicesBuildTimeConfig.Flavor kind
kind (needs priviledge docker)
-
k3s
public static final KubernetesDevServicesBuildTimeConfig.Flavor k3s
k3s (needs priviledge docker)
-
api_only
public static final KubernetesDevServicesBuildTimeConfig.Flavor api_only
api only
-
-
Method Detail
-
values
public static KubernetesDevServicesBuildTimeConfig.Flavor[] 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 (KubernetesDevServicesBuildTimeConfig.Flavor c : KubernetesDevServicesBuildTimeConfig.Flavor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KubernetesDevServicesBuildTimeConfig.Flavor 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
-
-