Enum QuarkusExtensionCodestartCatalog.Code
- java.lang.Object
-
- java.lang.Enum<QuarkusExtensionCodestartCatalog.Code>
-
- io.quarkus.devtools.codestarts.extension.QuarkusExtensionCodestartCatalog.Code
-
- All Implemented Interfaces:
DataKey,Serializable,Comparable<QuarkusExtensionCodestartCatalog.Code>
- Enclosing class:
- QuarkusExtensionCodestartCatalog
public static enum QuarkusExtensionCodestartCatalog.Code extends Enum<QuarkusExtensionCodestartCatalog.Code> implements DataKey
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEVMODE_TESTEXTENSION_BASEEXTENSION_CODESTARTINTEGRATION_TESTSQUARKIVERSEUNIT_TEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QuarkusExtensionCodestartCatalog.CodevalueOf(String name)Returns the enum constant of this type with the specified name.static QuarkusExtensionCodestartCatalog.Code[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTENSION_BASE
public static final QuarkusExtensionCodestartCatalog.Code EXTENSION_BASE
-
QUARKIVERSE
public static final QuarkusExtensionCodestartCatalog.Code QUARKIVERSE
-
DEVMODE_TEST
public static final QuarkusExtensionCodestartCatalog.Code DEVMODE_TEST
-
INTEGRATION_TESTS
public static final QuarkusExtensionCodestartCatalog.Code INTEGRATION_TESTS
-
UNIT_TEST
public static final QuarkusExtensionCodestartCatalog.Code UNIT_TEST
-
EXTENSION_CODESTART
public static final QuarkusExtensionCodestartCatalog.Code EXTENSION_CODESTART
-
-
Method Detail
-
values
public static QuarkusExtensionCodestartCatalog.Code[] 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 (QuarkusExtensionCodestartCatalog.Code c : QuarkusExtensionCodestartCatalog.Code.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuarkusExtensionCodestartCatalog.Code 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
-
-