public static enum UtilImage.WayTriangle extends java.lang.Enum<UtilImage.WayTriangle>
| Enum Constant and Description |
|---|
DOWN
Triangle for down
|
LEFT
Triangle for left
|
RIGHT
Triangle for right
|
UP
Triangle for up
|
| Modifier and Type | Method and Description |
|---|---|
static UtilImage.WayTriangle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UtilImage.WayTriangle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UtilImage.WayTriangle DOWN
public static final UtilImage.WayTriangle LEFT
public static final UtilImage.WayTriangle RIGHT
public static final UtilImage.WayTriangle UP
public static UtilImage.WayTriangle[] values()
for (UtilImage.WayTriangle c : UtilImage.WayTriangle.values()) System.out.println(c);
public static UtilImage.WayTriangle 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