enum DisplayOverlapsOption extends java.lang.Enum<DisplayOverlapsOption>
Enum Constant and Description |
---|
Horizontal |
Vertical |
Modifier and Type | Method and Description |
---|---|
static DisplayOverlapsOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayOverlapsOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayOverlapsOption Horizontal
public static final DisplayOverlapsOption Vertical
public static DisplayOverlapsOption[] values()
for (DisplayOverlapsOption c : DisplayOverlapsOption.values()) System.out.println(c);
public static DisplayOverlapsOption 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