public static enum CustomizationToolbarButton.ItemLocation extends java.lang.Enum<CustomizationToolbarButton.ItemLocation>
Dockable
can be in respect to
this buttonEnum Constant and Description |
---|
ELSEWHERE
The
Dockable is visible, but it is part of another
DockStation |
HERE
The
Dockable is visible and it is part of this
DockStation |
INVISIBLE
The
Dockable is not visible anywhere |
Modifier and Type | Method and Description |
---|---|
static CustomizationToolbarButton.ItemLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomizationToolbarButton.ItemLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizationToolbarButton.ItemLocation INVISIBLE
Dockable
is not visible anywherepublic static final CustomizationToolbarButton.ItemLocation ELSEWHERE
Dockable
is visible, but it is part of another
DockStation
public static final CustomizationToolbarButton.ItemLocation HERE
Dockable
is visible and it is part of this
DockStation
public static CustomizationToolbarButton.ItemLocation[] values()
for (CustomizationToolbarButton.ItemLocation c : CustomizationToolbarButton.ItemLocation.values()) System.out.println(c);
public static CustomizationToolbarButton.ItemLocation 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