public enum DockOrientation extends Enum<DockOrientation>
| Enum Constant and Description |
|---|
horizontal |
vertical |
| Modifier and Type | Method and Description |
|---|---|
static DockOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockOrientation horizontal
public static final DockOrientation vertical
public static DockOrientation[] values()
for (DockOrientation c : DockOrientation.values()) System.out.println(c);
public static DockOrientation 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 nullCopyright © 2011–2015 JRebirth OSS. All rights reserved.