Package io.helidon.build.dev
Enum BuildMonitor.NextAction
- java.lang.Object
-
- java.lang.Enum<BuildMonitor.NextAction>
-
- io.helidon.build.dev.BuildMonitor.NextAction
-
- All Implemented Interfaces:
Serializable,Comparable<BuildMonitor.NextAction>
- Enclosing interface:
- BuildMonitor
public static enum BuildMonitor.NextAction extends Enum<BuildMonitor.NextAction>
The action to take on the next cycle.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUEContinue.EXITExit.WAIT_FOR_CHANGEWait for a change.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuildMonitor.NextActionvalueOf(String name)Returns the enum constant of this type with the specified name.static BuildMonitor.NextAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTINUE
public static final BuildMonitor.NextAction CONTINUE
Continue.
-
WAIT_FOR_CHANGE
public static final BuildMonitor.NextAction WAIT_FOR_CHANGE
Wait for a change.
-
EXIT
public static final BuildMonitor.NextAction EXIT
Exit.
-
-
Method Detail
-
values
public static BuildMonitor.NextAction[] 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 (BuildMonitor.NextAction c : BuildMonitor.NextAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuildMonitor.NextAction 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
-
-