Enum QuarkusCodestartData.QuarkusDataKey
- java.lang.Object
-
- java.lang.Enum<QuarkusCodestartData.QuarkusDataKey>
-
- io.quarkus.devtools.codestarts.quarkus.QuarkusCodestartData.QuarkusDataKey
-
- All Implemented Interfaces:
DataKey,Serializable,Comparable<QuarkusCodestartData.QuarkusDataKey>
- Enclosing class:
- QuarkusCodestartData
public static enum QuarkusCodestartData.QuarkusDataKey extends Enum<QuarkusCodestartData.QuarkusDataKey> implements DataKey
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringkey()static QuarkusCodestartData.QuarkusDataKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static QuarkusCodestartData.QuarkusDataKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOM_GROUP_ID
public static final QuarkusCodestartData.QuarkusDataKey BOM_GROUP_ID
-
BOM_ARTIFACT_ID
public static final QuarkusCodestartData.QuarkusDataKey BOM_ARTIFACT_ID
-
BOM_VERSION
public static final QuarkusCodestartData.QuarkusDataKey BOM_VERSION
-
PROJECT_GROUP_ID
public static final QuarkusCodestartData.QuarkusDataKey PROJECT_GROUP_ID
-
PROJECT_ARTIFACT_ID
public static final QuarkusCodestartData.QuarkusDataKey PROJECT_ARTIFACT_ID
-
PROJECT_VERSION
public static final QuarkusCodestartData.QuarkusDataKey PROJECT_VERSION
-
PROJECT_NAME
public static final QuarkusCodestartData.QuarkusDataKey PROJECT_NAME
-
PROJECT_DESCRIPTION
public static final QuarkusCodestartData.QuarkusDataKey PROJECT_DESCRIPTION
-
PROJECT_PACKAGE_NAME
public static final QuarkusCodestartData.QuarkusDataKey PROJECT_PACKAGE_NAME
-
QUARKUS_MAVEN_PLUGIN_GROUP_ID
public static final QuarkusCodestartData.QuarkusDataKey QUARKUS_MAVEN_PLUGIN_GROUP_ID
-
QUARKUS_MAVEN_PLUGIN_ARTIFACT_ID
public static final QuarkusCodestartData.QuarkusDataKey QUARKUS_MAVEN_PLUGIN_ARTIFACT_ID
-
QUARKUS_MAVEN_PLUGIN_VERSION
public static final QuarkusCodestartData.QuarkusDataKey QUARKUS_MAVEN_PLUGIN_VERSION
-
QUARKUS_GRADLE_PLUGIN_ID
public static final QuarkusCodestartData.QuarkusDataKey QUARKUS_GRADLE_PLUGIN_ID
-
QUARKUS_GRADLE_PLUGIN_VERSION
public static final QuarkusCodestartData.QuarkusDataKey QUARKUS_GRADLE_PLUGIN_VERSION
-
QUARKUS_VERSION
public static final QuarkusCodestartData.QuarkusDataKey QUARKUS_VERSION
-
JAVA_VERSION
public static final QuarkusCodestartData.QuarkusDataKey JAVA_VERSION
-
KOTLIN_VERSION
public static final QuarkusCodestartData.QuarkusDataKey KOTLIN_VERSION
-
SCALA_VERSION
public static final QuarkusCodestartData.QuarkusDataKey SCALA_VERSION
-
SCALA_MAVEN_PLUGIN_VERSION
public static final QuarkusCodestartData.QuarkusDataKey SCALA_MAVEN_PLUGIN_VERSION
-
MAVEN_COMPILER_PLUGIN_VERSION
public static final QuarkusCodestartData.QuarkusDataKey MAVEN_COMPILER_PLUGIN_VERSION
-
MAVEN_SUREFIRE_PLUGIN_VERSION
public static final QuarkusCodestartData.QuarkusDataKey MAVEN_SUREFIRE_PLUGIN_VERSION
-
RESTEASY_CODESTART_RESOURCE_PATH
public static final QuarkusCodestartData.QuarkusDataKey RESTEASY_CODESTART_RESOURCE_PATH
-
RESTEASY_CODESTART_RESOURCE_CLASS_NAME
public static final QuarkusCodestartData.QuarkusDataKey RESTEASY_CODESTART_RESOURCE_CLASS_NAME
-
RESTEASY_REACTIVE_CODESTART_RESOURCE_PATH
public static final QuarkusCodestartData.QuarkusDataKey RESTEASY_REACTIVE_CODESTART_RESOURCE_PATH
-
RESTEASY_REACTIVE_CODESTART_RESOURCE_CLASS_NAME
public static final QuarkusCodestartData.QuarkusDataKey RESTEASY_REACTIVE_CODESTART_RESOURCE_CLASS_NAME
-
SPRING_WEB_CODESTART_RESOURCE_PATH
public static final QuarkusCodestartData.QuarkusDataKey SPRING_WEB_CODESTART_RESOURCE_PATH
-
SPRING_WEB_CODESTART_RESOURCE_CLASS_NAME
public static final QuarkusCodestartData.QuarkusDataKey SPRING_WEB_CODESTART_RESOURCE_CLASS_NAME
-
APP_CONFIG
public static final QuarkusCodestartData.QuarkusDataKey APP_CONFIG
-
-
Method Detail
-
values
public static QuarkusCodestartData.QuarkusDataKey[] 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 (QuarkusCodestartData.QuarkusDataKey c : QuarkusCodestartData.QuarkusDataKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuarkusCodestartData.QuarkusDataKey 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
-
-