public static enum DockLayoutInfo.Data extends Enum<DockLayoutInfo.Data>
DockLayoutInfo
contains.Enum Constant and Description |
---|
BYTE
information is present as byte stream
|
DOCK_LAYOUT
information is present as
DockLayout |
NULL
no information at all is available
|
XML
information is present as
XElement |
Modifier and Type | Method and Description |
---|---|
static DockLayoutInfo.Data |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockLayoutInfo.Data[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockLayoutInfo.Data NULL
public static final DockLayoutInfo.Data XML
XElement
public static final DockLayoutInfo.Data BYTE
public static final DockLayoutInfo.Data DOCK_LAYOUT
DockLayout
public static DockLayoutInfo.Data[] values()
for (DockLayoutInfo.Data c : DockLayoutInfo.Data.values()) System.out.println(c);
public static DockLayoutInfo.Data 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