public static enum GameGrid.ClosingMode extends java.lang.Enum<GameGrid.ClosingMode>
Enum Constant and Description |
---|
AskOnClose
Shows confirmation dialog before terminating application by
calling System.exit(0).
|
DisposeOnClose
Stops game thread, hides window and releases system resources.
|
NothingOnClose
Disables close button action.
|
TerminateOnClose
Terminates application by calling System.exit(0) (default).
|
Modifier and Type | Method and Description |
---|---|
static GameGrid.ClosingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GameGrid.ClosingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameGrid.ClosingMode TerminateOnClose
public static final GameGrid.ClosingMode AskOnClose
public static final GameGrid.ClosingMode DisposeOnClose
public static final GameGrid.ClosingMode NothingOnClose
public static GameGrid.ClosingMode[] values()
for (GameGrid.ClosingMode c : GameGrid.ClosingMode.values()) System.out.println(c);
public static GameGrid.ClosingMode 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