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