| Enum Constant and Description |
|---|
CENTER
When the center of the entity must be within the Container Bounds.
|
CONTAINED
When the same outer Edge must be on or adjacent to the Container bounds.
|
EDGE
When the opposite outer Edge must be on or adjacent to the Container bounds.
|
| Modifier and Type | Method and Description |
|---|---|
static BoundMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoundMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundMode CONTAINED
public static final BoundMode CENTER
public static final BoundMode EDGE
public static BoundMode[] values()
for (BoundMode c : BoundMode.values()) System.out.println(c);
public static BoundMode 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