public static enum Feature.FeatureType extends java.lang.Enum<Feature.FeatureType>
Modifier and Type | Method and Description |
---|---|
static Feature.FeatureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Feature.FeatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Feature.FeatureType POINT
public static final Feature.FeatureType LINES
public static final Feature.FeatureType POLYGON
public static final Feature.FeatureType MULTI
public static Feature.FeatureType[] values()
for (Feature.FeatureType c : Feature.FeatureType.values()) System.out.println(c);
public static Feature.FeatureType 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 null