public enum GridartaRunMode extends java.lang.Enum<GridartaRunMode>
| Enum Constant and Description |
|---|
BATCH_PNG
Batch PNG: Create PNG files for all given maps in their directories.
|
COLLECT_ARCHES
Collect archetypes.
|
NORMAL
Normal operation: Start editor with GUI.
|
SINGLE_PNG
Single PNG: Create a PNG file from the specified map.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isConsoleMode()
Returns whether this mode uses console-mode.
|
static GridartaRunMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GridartaRunMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridartaRunMode NORMAL
public static final GridartaRunMode BATCH_PNG
public static final GridartaRunMode SINGLE_PNG
public static final GridartaRunMode COLLECT_ARCHES
public static GridartaRunMode[] values()
for (GridartaRunMode c : GridartaRunMode.values()) System.out.println(c);
public static GridartaRunMode 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 nullpublic boolean isConsoleMode()