public enum ModelPosition extends Enum<ModelPosition>
| Modifier and Type | Method and Description |
|---|---|
static ModelPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelPosition NORTH
public static final ModelPosition NORTH_EAST
public static final ModelPosition EAST
public static final ModelPosition SOUTH_EAST
public static final ModelPosition SOUTH
public static final ModelPosition SOUTH_WEST
public static final ModelPosition WEST
public static final ModelPosition NORTH_WEST
public static final ModelPosition CENTER
public static final ModelPosition TOP
public static final ModelPosition BOTTOM
public static final ModelPosition LEFT
public static final ModelPosition RIGHT
public static final ModelPosition TOP_RIGHT
public static final ModelPosition TOP_LEFT
public static final ModelPosition BOTTOM_RIGHT
public static final ModelPosition BOTTOM_LEFT
public static final ModelPosition TWO_POS_HEAD
public static final ModelPosition TWO_POS_TAIL
public static final ModelPosition THREE_CENTER
public static final ModelPosition THREE_SOURCE_CENTER
public static final ModelPosition THREE_TARGET_CENTER
public static final ModelPosition SIX_POS_HEAD
public static final ModelPosition SIX_POS_TAIL
public static final ModelPosition SIX_POS_SOURCE_HEAD
public static final ModelPosition SIX_POS_SOURCE_TAIL
public static final ModelPosition SIX_POS_TARGET_HEAD
public static final ModelPosition SIX_POS_TARGET_TAIL
public final String value
public static ModelPosition[] values()
for (ModelPosition c : ModelPosition.values()) System.out.println(c);
public static ModelPosition 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 © 2016. All rights reserved.