public enum AlignmentExt extends Enum<AlignmentExt>
| Enum Constant and Description |
|---|
BOTTOM |
CENTER |
EAST |
LEFT |
MIDDLE_HORIZONTAL |
MIDDLE_VERTICAL |
NORTH |
NORTH_EAST |
NORTH_WEST |
RIGHT |
SOUTH |
SOUTH_EAST |
SOUTH_WEST |
TOP |
WEST |
| Modifier and Type | Method and Description |
|---|---|
Insets |
maskInsets(Insets insets) |
Insets |
maskInsets(Insets insets,
int maskValue) |
Insets |
maskInsets(int top,
int left,
int bottom,
int right,
int mask) |
Insets |
maskInsetsInverted(Insets insets) |
Insets |
maskInsetsInverted(Insets insets,
int mask) |
Insets |
maskInsetsInverted(int top,
int left,
int bottom,
int right,
int mask) |
static AlignmentExt |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlignmentExt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlignmentExt NORTH
public static final AlignmentExt SOUTH
public static final AlignmentExt EAST
public static final AlignmentExt WEST
public static final AlignmentExt NORTH_EAST
public static final AlignmentExt NORTH_WEST
public static final AlignmentExt SOUTH_EAST
public static final AlignmentExt SOUTH_WEST
public static final AlignmentExt CENTER
public static final AlignmentExt LEFT
public static final AlignmentExt MIDDLE_HORIZONTAL
public static final AlignmentExt RIGHT
public static final AlignmentExt TOP
public static final AlignmentExt MIDDLE_VERTICAL
public static final AlignmentExt BOTTOM
public static AlignmentExt[] values()
for (AlignmentExt c : AlignmentExt.values()) System.out.println(c);
public static AlignmentExt 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 nullpublic Insets maskInsets(int top, int left, int bottom, int right, int mask)
public Insets maskInsetsInverted(int top, int left, int bottom, int right, int mask)