Package io.quarkus.bootstrap.app
Enum QuarkusBootstrap.Mode
- java.lang.Object
-
- java.lang.Enum<QuarkusBootstrap.Mode>
-
- io.quarkus.bootstrap.app.QuarkusBootstrap.Mode
-
- All Implemented Interfaces:
Serializable,Comparable<QuarkusBootstrap.Mode>
- Enclosing class:
- QuarkusBootstrap
public static enum QuarkusBootstrap.Mode extends Enum<QuarkusBootstrap.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUOUS_TESTDEVPRODREMOTE_DEV_CLIENTREMOTE_DEV_SERVERTEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QuarkusBootstrap.ModevalueOf(String name)Returns the enum constant of this type with the specified name.static QuarkusBootstrap.Mode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEV
public static final QuarkusBootstrap.Mode DEV
-
TEST
public static final QuarkusBootstrap.Mode TEST
-
PROD
public static final QuarkusBootstrap.Mode PROD
-
REMOTE_DEV_SERVER
public static final QuarkusBootstrap.Mode REMOTE_DEV_SERVER
-
REMOTE_DEV_CLIENT
public static final QuarkusBootstrap.Mode REMOTE_DEV_CLIENT
-
CONTINUOUS_TEST
public static final QuarkusBootstrap.Mode CONTINUOUS_TEST
-
-
Method Detail
-
values
public static QuarkusBootstrap.Mode[] 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 (QuarkusBootstrap.Mode c : QuarkusBootstrap.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuarkusBootstrap.Mode 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
-
-