public enum IDEForceKill extends Enum<IDEForceKill>
Enum Constant and Description |
---|
ALWAYS
Always kill, without prompting.
|
NEVER
Never kill and do not prompt.
|
PROMPT
Prompt the user, if possible, whether to kill the IDE.
|
Modifier and Type | Method and Description |
---|---|
static IDEForceKill |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IDEForceKill[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDEForceKill PROMPT
public static final IDEForceKill ALWAYS
public static final IDEForceKill NEVER
public static IDEForceKill[] values()
for (IDEForceKill c : IDEForceKill.values()) System.out.println(c);
public static IDEForceKill valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null