public static enum Background.Align extends java.lang.Enum<Background.Align>
| Enum Constant and Description |
|---|
FullScreen
全屏
|
LeftBottom
左下角
|
LeftTop
左上角
|
RightBottom
右下角
|
RightTop
右上角
|
| Modifier and Type | Method and Description |
|---|---|
static Background.Align |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Background.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Background.Align LeftTop
public static final Background.Align RightTop
public static final Background.Align LeftBottom
public static final Background.Align RightBottom
public static final Background.Align FullScreen
public static Background.Align[] values()
for (Background.Align c : Background.Align.values()) System.out.println(c);
public static Background.Align 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