public static enum Logging.LogMode extends Enum<Logging.LogMode>
| Enum Constant and Description |
|---|
ALL
Log all information available
|
ORIENTATION_REGION
Player orientation and region selection
|
PLACEMENT
Either the player position or pos1, depending on the placeAtPos1 flag
|
POSITION
Player position
|
REGION
Region selection
|
| Modifier and Type | Method and Description |
|---|---|
static Logging.LogMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Logging.LogMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logging.LogMode POSITION
public static final Logging.LogMode REGION
public static final Logging.LogMode ORIENTATION_REGION
public static final Logging.LogMode PLACEMENT
public static final Logging.LogMode ALL
public static Logging.LogMode[] values()
for (Logging.LogMode c : Logging.LogMode.values()) System.out.println(c);
public static Logging.LogMode 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 nullCopyright © 2010-2014. All Rights Reserved.