Package io.quarkus.devtools.commands
Enum CreateExtension.LayoutType
- java.lang.Object
-
- java.lang.Enum<CreateExtension.LayoutType>
-
- io.quarkus.devtools.commands.CreateExtension.LayoutType
-
- All Implemented Interfaces:
Serializable,Comparable<CreateExtension.LayoutType>
- Enclosing class:
- CreateExtension
public static enum CreateExtension.LayoutType extends Enum<CreateExtension.LayoutType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OTHER_PLATFORMQUARKIVERSEQUARKUS_CORESTANDALONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CreateExtension.LayoutTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CreateExtension.LayoutType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OTHER_PLATFORM
public static final CreateExtension.LayoutType OTHER_PLATFORM
-
QUARKUS_CORE
public static final CreateExtension.LayoutType QUARKUS_CORE
-
QUARKIVERSE
public static final CreateExtension.LayoutType QUARKIVERSE
-
STANDALONE
public static final CreateExtension.LayoutType STANDALONE
-
-
Method Detail
-
values
public static CreateExtension.LayoutType[] 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 (CreateExtension.LayoutType c : CreateExtension.LayoutType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateExtension.LayoutType 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
-
-