public static enum DockableState.Location extends 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(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(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© Copyright 2004-2013 Lilian Chamontin. All Rights Reserved.