public enum OverviewDisplayOptions extends Enum<OverviewDisplayOptions>
Overview box.| Enum Constant and Description |
|---|
DISABLE
The graph overview will be hidden.
|
ENABLE
The graph overview will be displayed.
|
MINIMIZE
The graph overview will be minimized by default.
|
| Modifier and Type | Method and Description |
|---|---|
static OverviewDisplayOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverviewDisplayOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverviewDisplayOptions ENABLE
public static final OverviewDisplayOptions DISABLE
public static final OverviewDisplayOptions MINIMIZE
public static OverviewDisplayOptions[] values()
for (OverviewDisplayOptions c : OverviewDisplayOptions.values()) System.out.println(c);
public static OverviewDisplayOptions 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