Package io.quarkus.gradle.tasks
Enum Deploy.Deployer
- java.lang.Object
-
- java.lang.Enum<Deploy.Deployer>
-
- io.quarkus.gradle.tasks.Deploy.Deployer
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Deploy.Deployer>
- Enclosing class:
- Deploy
public static enum Deploy.Deployer extends java.lang.Enum<Deploy.Deployer>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description kindknativekubernetesminikubeopenshift
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetExtension()java.lang.String[]getRequiresOneOf()static Deploy.DeployervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Deploy.Deployer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
kubernetes
public static final Deploy.Deployer kubernetes
-
minikube
public static final Deploy.Deployer minikube
-
kind
public static final Deploy.Deployer kind
-
knative
public static final Deploy.Deployer knative
-
openshift
public static final Deploy.Deployer openshift
-
-
Method Detail
-
values
public static Deploy.Deployer[] 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 (Deploy.Deployer c : Deploy.Deployer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Deploy.Deployer 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
-
getExtension
public java.lang.String getExtension()
-
getRequiresOneOf
public java.lang.String[] getRequiresOneOf()
-
-