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