public static enum Visual.Layout extends Enum<Visual.Layout>
Enum Constant and Description |
---|
AROUND |
BOTTOM |
CENTER |
FOLLOWERS |
INSIDE |
LEFT |
ORIGIN |
OVER |
RIGHT |
TOP |
Modifier and Type | Method and Description |
---|---|
static Visual.Layout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Visual.Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Visual.Layout TOP
public static final Visual.Layout BOTTOM
public static final Visual.Layout LEFT
public static final Visual.Layout RIGHT
public static final Visual.Layout FOLLOWERS
public static final Visual.Layout INSIDE
public static final Visual.Layout OVER
public static final Visual.Layout ORIGIN
public static final Visual.Layout CENTER
public static final Visual.Layout AROUND
public static Visual.Layout[] values()
for (Visual.Layout c : Visual.Layout.values()) System.out.println(c);
public static Visual.Layout 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 null