| Enum Constant and Description |
|---|
AROUND
四周
|
LEFT_AND_RIGHT
左右显示
|
UP_AND_DOWN
上下显示
|
| Modifier and Type | Method and Description |
|---|---|
static Auto |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Auto[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Auto AROUND
public static final Auto UP_AND_DOWN
public static final Auto LEFT_AND_RIGHT
public static Auto[] values()
for (Auto c : Auto.values()) System.out.println(c);
public static Auto 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