public enum Facing extends Enum<Facing>
Modifier and Type | Method and Description |
---|---|
String |
value() |
static Facing |
value(String facing) |
static Facing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Facing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Facing INTERNAL
public static final Facing ADMIN
public static final Facing PUBLIC
public static Facing[] values()
for (Facing c : Facing.values()) System.out.println(c);
public static Facing 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 value()
Copyright © 2017. All rights reserved.