public enum LayoutType extends Enum<LayoutType>
| Enum Constant and Description |
|---|
BASIC |
LEFT_COLUMN |
RIGHT_COLUMN |
| Modifier and Type | Method and Description |
|---|---|
static LayoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutType BASIC
public static final LayoutType LEFT_COLUMN
public static final LayoutType RIGHT_COLUMN
public static LayoutType[] values()
for (LayoutType c : LayoutType.values()) System.out.println(c);
public static LayoutType 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.