public enum StackingBehavior extends java.lang.Enum<StackingBehavior>
| Enum Constant and Description |
|---|
ADAPTIVE
The action buttons are stacked vertically IF it is necessary for them to fit in the dialog.
|
ALWAYS
The action buttons are always stacked vertically.
|
NEVER
The action buttons are never stacked, even if they should be.
|
| Modifier and Type | Method and Description |
|---|---|
static StackingBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StackingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackingBehavior ALWAYS
public static final StackingBehavior ADAPTIVE
public static final StackingBehavior NEVER
public static StackingBehavior[] values()
for (StackingBehavior c : StackingBehavior.values()) System.out.println(c);
public static StackingBehavior valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null