public enum StackingMethod extends Enum<StackingMethod>
Enum Constant and Description |
---|
first
new items appears on the start of the stack (as first)
|
last
new items appears on the end of the stack (as last)
|
Modifier and Type | Field and Description |
---|---|
static StackingMethod |
DEFAULT |
Modifier and Type | Method and Description |
---|---|
static StackingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackingMethod first
public static final StackingMethod last
public static final StackingMethod DEFAULT
public static StackingMethod[] values()
for (StackingMethod c : StackingMethod.values()) System.out.println(c);
public static StackingMethod 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 © 2015 JBoss by Red Hat. All Rights Reserved.