public enum TailAlignment extends java.lang.Enum<TailAlignment>
Enum Constant and Description |
---|
Auto |
BottomCenter |
BottomLeft |
BottomRight |
LeftBottom |
LeftCenter |
LeftTop |
RightBottom |
RightCenter |
RightTop |
TopCenter |
TopLeft |
TopRight |
Modifier and Type | Method and Description |
---|---|
static TailAlignment |
fromInt(int value) |
int |
getIndex() |
void |
setIndex(int index) |
static TailAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TailAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TailAlignment Auto
public static final TailAlignment BottomLeft
public static final TailAlignment BottomRight
public static final TailAlignment BottomCenter
public static final TailAlignment TopLeft
public static final TailAlignment TopRight
public static final TailAlignment TopCenter
public static final TailAlignment LeftTop
public static final TailAlignment LeftCenter
public static final TailAlignment LeftBottom
public static final TailAlignment RightTop
public static final TailAlignment RightCenter
public static final TailAlignment RightBottom
public static TailAlignment[] values()
for (TailAlignment c : TailAlignment.values()) System.out.println(c);
public static TailAlignment 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 nullpublic int getIndex()
public void setIndex(int index)
public static TailAlignment fromInt(int value)