public enum WallMountLocation extends Enum<WallMountLocation> implements StringIdentifiable
| Modifier and Type | Method and Description |
|---|---|
String |
asString() |
static WallMountLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WallMountLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcreateCodec, createCodec, method_28142public static final WallMountLocation FLOOR
public static final WallMountLocation WALL
public static final WallMountLocation CEILING
private final String name
public static WallMountLocation[] values()
for (WallMountLocation c : WallMountLocation.values()) System.out.println(c);
public static WallMountLocation 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 nullpublic String asString()
asString in interface StringIdentifiable