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