public enum FaceScope extends Enum<FaceScope>
Modifier and Type | Method and Description |
---|---|
static FaceScope |
fromInteger(int value)
Convert NFD code to FaceScope enum.
|
int |
toInteger()
Convert FaceScope to the NFD code.
|
static FaceScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FaceScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FaceScope NONE
public static final FaceScope NON_LOCAL
public static final FaceScope LOCAL
public static FaceScope[] values()
for (FaceScope c : FaceScope.values()) System.out.println(c);
public static FaceScope 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 final int toInteger()
public static FaceScope fromInteger(int value)
value
- NFD's FaceScope codeCopyright © 2016. All rights reserved.