public static enum Arrow.Corner extends java.lang.Enum<Arrow.Corner>
Modifier and Type | Method and Description |
---|---|
static Arrow.Corner |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Arrow.Corner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Arrow.Corner TL
public static final Arrow.Corner BL
public static final Arrow.Corner BR
public static final Arrow.Corner TR
public static final Arrow.Corner L
public static final Arrow.Corner T
public static final Arrow.Corner R
public static final Arrow.Corner B
public static Arrow.Corner[] values()
for (Arrow.Corner c : Arrow.Corner.values()) System.out.println(c);
public static Arrow.Corner 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