Package io.quarkus.deployment.pkg
Enum NativeConfig.ContainerRuntime
- java.lang.Object
-
- java.lang.Enum<NativeConfig.ContainerRuntime>
-
- io.quarkus.deployment.pkg.NativeConfig.ContainerRuntime
-
- All Implemented Interfaces:
Serializable,Comparable<NativeConfig.ContainerRuntime>
- Enclosing class:
- NativeConfig
@Deprecated(since="2.7", forRemoval=true) public static enum NativeConfig.ContainerRuntime extends Enum<NativeConfig.ContainerRuntime>
Deprecated, for removal: This API element is subject to removal in a future version.UseContainerRuntimeUtil.ContainerRuntimeinstead.Supported Container runtimes
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetExecutableName()Deprecated, for removal: This API element is subject to removal in a future version.static NativeConfig.ContainerRuntimevalueOf(String name)Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name.static NativeConfig.ContainerRuntime[]values()Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCKER
public static final NativeConfig.ContainerRuntime DOCKER
Deprecated, for removal: This API element is subject to removal in a future version.
-
PODMAN
public static final NativeConfig.ContainerRuntime PODMAN
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Detail
-
values
public static NativeConfig.ContainerRuntime[] values()
Deprecated, for removal: This API element is subject to removal in a future version.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 (NativeConfig.ContainerRuntime c : NativeConfig.ContainerRuntime.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NativeConfig.ContainerRuntime valueOf(String name)
Deprecated, for removal: This API element is subject to removal in a future version.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
-
getExecutableName
public String getExecutableName()
Deprecated, for removal: This API element is subject to removal in a future version.
-
-