public static enum RunConfiguration.RestartSingletonResult extends java.lang.Enum<RunConfiguration.RestartSingletonResult>
Enum Constant and Description |
---|
ASK_AND_RESTART
Ask user to stop and restart the run configuration.
|
NO_FURTHER_ACTION
No further action is needed.
|
RESTART
Stop and restart the run configuration without additional interaction with user.
|
Modifier and Type | Method and Description |
---|---|
static RunConfiguration.RestartSingletonResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RunConfiguration.RestartSingletonResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunConfiguration.RestartSingletonResult ASK_AND_RESTART
public static final RunConfiguration.RestartSingletonResult RESTART
public static final RunConfiguration.RestartSingletonResult NO_FURTHER_ACTION
public static RunConfiguration.RestartSingletonResult[] values()
for (RunConfiguration.RestartSingletonResult c : RunConfiguration.RestartSingletonResult.values()) System.out.println(c);
public static RunConfiguration.RestartSingletonResult valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null