public static enum ButtonCell.IconAlign extends Enum<ButtonCell.IconAlign>
| Enum Constant and Description |
|---|
BOTTOM
Icons are aligned to the bottom.
|
LEFT
Icons are aligned to the left.
|
RIGHT
Icons are aligned to the right.
|
TOP
Icons are aligned to the top.
|
| Modifier and Type | Method and Description |
|---|---|
static ButtonCell.IconAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ButtonCell.IconAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ButtonCell.IconAlign RIGHT
public static final ButtonCell.IconAlign BOTTOM
public static final ButtonCell.IconAlign TOP
public static final ButtonCell.IconAlign LEFT
public static ButtonCell.IconAlign[] values()
for (ButtonCell.IconAlign c : ButtonCell.IconAlign.values()) System.out.println(c);
public static ButtonCell.IconAlign 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 © 2018. All rights reserved.