Serializable, Comparable<Jigsaw.Orientation>public static enum Jigsaw.Orientation extends Enum<Jigsaw.Orientation>
| Enum Constant | Description |
|---|---|
DOWN_EAST |
|
DOWN_NORTH |
|
DOWN_SOUTH |
|
DOWN_WEST |
|
EAST_UP |
|
NORTH_UP |
|
SOUTH_UP |
|
UP_EAST |
|
UP_NORTH |
|
UP_SOUTH |
|
UP_WEST |
|
WEST_UP |
| Modifier and Type | Method | Description |
|---|---|---|
static Jigsaw.Orientation |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Jigsaw.Orientation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jigsaw.Orientation DOWN_EAST
public static final Jigsaw.Orientation DOWN_NORTH
public static final Jigsaw.Orientation DOWN_SOUTH
public static final Jigsaw.Orientation DOWN_WEST
public static final Jigsaw.Orientation UP_EAST
public static final Jigsaw.Orientation UP_NORTH
public static final Jigsaw.Orientation UP_SOUTH
public static final Jigsaw.Orientation UP_WEST
public static final Jigsaw.Orientation WEST_UP
public static final Jigsaw.Orientation EAST_UP
public static final Jigsaw.Orientation NORTH_UP
public static final Jigsaw.Orientation SOUTH_UP
public static Jigsaw.Orientation[] values()
for (Jigsaw.Orientation c : Jigsaw.Orientation.values()) System.out.println(c);
public static Jigsaw.Orientation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.