public enum EntityPosition extends Enum<EntityPosition>
Enum Constant and Description |
---|
ENTRY_POINT |
EXIT_POINT |
NORMAL |
Modifier and Type | Method and Description |
---|---|
static EntityPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityPosition NORMAL
public static final EntityPosition ENTRY_POINT
public static final EntityPosition EXIT_POINT
public static EntityPosition[] values()
for (EntityPosition c : EntityPosition.values()) System.out.println(c);
public static EntityPosition 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 © 2015. All Rights Reserved.