public enum FeatureDrawType extends Enum<FeatureDrawType>
| Enum Constant and Description |
|---|
CIRCLE
Circle for a point
|
FILL
Fill for a polygon
|
STROKE
Stroke for a line or polygon
|
| Modifier and Type | Method and Description |
|---|---|
static FeatureDrawType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureDrawType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureDrawType CIRCLE
public static final FeatureDrawType STROKE
public static final FeatureDrawType FILL
public static FeatureDrawType[] values()
for (FeatureDrawType c : FeatureDrawType.values()) System.out.println(c);
public static FeatureDrawType 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 null