public static enum Shape.ShapeType extends Enum<Shape.ShapeType>
| Enum Constant and Description |
|---|
FIELD
Field shape, Geometry will be a MultiPolygon
|
HELPLINE
helpline shape, Geometry will be a line
|
SKIP
Skip this shape
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Shape.ShapeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Shape.ShapeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Shape.ShapeType SKIP
public static final Shape.ShapeType FIELD
public static final Shape.ShapeType HELPLINE
public static Shape.ShapeType[] values()
for (Shape.ShapeType c : Shape.ShapeType.values()) System.out.println(c);
public static Shape.ShapeType 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 String toString()
toString in class Enum<Shape.ShapeType>Copyright © 2011. All Rights Reserved.