Enum QuarkusJBangCodestartCatalog.JBangDataKey
- java.lang.Object
-
- java.lang.Enum<QuarkusJBangCodestartCatalog.JBangDataKey>
-
- io.quarkus.devtools.codestarts.jbang.QuarkusJBangCodestartCatalog.JBangDataKey
-
- All Implemented Interfaces:
DataKey,Serializable,Comparable<QuarkusJBangCodestartCatalog.JBangDataKey>
- Enclosing class:
- QuarkusJBangCodestartCatalog
public static enum QuarkusJBangCodestartCatalog.JBangDataKey extends Enum<QuarkusJBangCodestartCatalog.JBangDataKey> implements DataKey
-
-
Enum Constant Summary
Enum Constants Enum Constant Description QUARKUS_BOM_ARTIFACT_IDQUARKUS_BOM_GROUP_IDQUARKUS_BOM_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringkey()static QuarkusJBangCodestartCatalog.JBangDataKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static QuarkusJBangCodestartCatalog.JBangDataKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUARKUS_BOM_GROUP_ID
public static final QuarkusJBangCodestartCatalog.JBangDataKey QUARKUS_BOM_GROUP_ID
-
QUARKUS_BOM_ARTIFACT_ID
public static final QuarkusJBangCodestartCatalog.JBangDataKey QUARKUS_BOM_ARTIFACT_ID
-
QUARKUS_BOM_VERSION
public static final QuarkusJBangCodestartCatalog.JBangDataKey QUARKUS_BOM_VERSION
-
-
Method Detail
-
values
public static QuarkusJBangCodestartCatalog.JBangDataKey[] 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 (QuarkusJBangCodestartCatalog.JBangDataKey c : QuarkusJBangCodestartCatalog.JBangDataKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuarkusJBangCodestartCatalog.JBangDataKey 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
-
-