public static enum DockableState.Location extends java.lang.Enum<DockableState.Location>
Enum Constant and Description |
---|
CLOSED
A constant describing a Dockable that is not visible.
|
DOCKED
A constant describing a Dockable that is visible (displayed in a DockableContainer)
|
FLOATING
A constant describing a Dockable that is currently floating (detached from the desktop)
|
HIDDEN
A constant describing a Dockable that is in auto-hide mode (reduced to a button)
|
MAXIMIZED
A constant describing a Dockable that is currently maximized
|
Modifier and Type | Method and Description |
---|---|
static DockableState.Location |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DockableState.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockableState.Location CLOSED
public static final DockableState.Location DOCKED
public static final DockableState.Location HIDDEN
public static final DockableState.Location MAXIMIZED
public static final DockableState.Location FLOATING
public static DockableState.Location[] values()
for (DockableState.Location c : DockableState.Location.values()) System.out.println(c);
public static DockableState.Location 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 nullCopyright © 2010-2014 Pacific Biosciences. All Rights Reserved.