public static enum GeoUtils.WindingOrder extends java.lang.Enum<GeoUtils.WindingOrder>
Modifier and Type | Field and Description |
---|---|
private int |
sign |
Modifier and Type | Method and Description |
---|---|
static GeoUtils.WindingOrder |
fromSign(int sign) |
int |
sign() |
static GeoUtils.WindingOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeoUtils.WindingOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoUtils.WindingOrder CW
public static final GeoUtils.WindingOrder COLINEAR
public static final GeoUtils.WindingOrder CCW
public static GeoUtils.WindingOrder[] values()
for (GeoUtils.WindingOrder c : GeoUtils.WindingOrder.values()) System.out.println(c);
public static GeoUtils.WindingOrder valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int sign()
public static GeoUtils.WindingOrder fromSign(int sign)