public enum HangingDirection extends Enum<HangingDirection> implements ObjectData
| Modifier and Type | Method and Description |
|---|---|
static HangingDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HangingDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HangingDirection SOUTH
public static final HangingDirection WEST
public static final HangingDirection NORTH
public static final HangingDirection EAST
public static HangingDirection[] values()
for (HangingDirection c : HangingDirection.values()) System.out.println(c);
public static HangingDirection 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.