public static enum BehaviourUtilities.RelativePosition extends java.lang.Enum<BehaviourUtilities.RelativePosition>
Enum Constant and Description |
---|
BOTTOM
The bottom.
|
BOTTOMLEFT
The bottomleft.
|
BOTTOMRIGHT
The bottomright.
|
LEFT
The left.
|
RIGHT
The right.
|
TOP
The top.
|
TOPLEFT
The topleft.
|
TOPRIGHT
The topright.
|
Modifier and Type | Method and Description |
---|---|
static BehaviourUtilities.RelativePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BehaviourUtilities.RelativePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BehaviourUtilities.RelativePosition BOTTOM
public static final BehaviourUtilities.RelativePosition BOTTOMLEFT
public static final BehaviourUtilities.RelativePosition BOTTOMRIGHT
public static final BehaviourUtilities.RelativePosition LEFT
public static final BehaviourUtilities.RelativePosition RIGHT
public static final BehaviourUtilities.RelativePosition TOP
public static final BehaviourUtilities.RelativePosition TOPLEFT
public static final BehaviourUtilities.RelativePosition TOPRIGHT
public static BehaviourUtilities.RelativePosition[] values()
for (BehaviourUtilities.RelativePosition c : BehaviourUtilities.RelativePosition.values()) System.out.println(c);
public static BehaviourUtilities.RelativePosition 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