public static enum Feature.FeatureType extends java.lang.Enum<Feature.FeatureType>
Enum Constant and Description |
---|
COLLECTION
For features that consist of one or more points or lines.
|
LINE
For features that consist of a single line (link or partial link).
|
MULTI_LINE
For features that consist of one or more lines.
|
MULTI_POINT
For features that consist of one or more points.
|
MULTI_POINT_ON_LINK
For features that consist of one or more points on link.
|
MULTI_POINT_ON_NODE
For features that consist of one or more points on node.
|
POINT
For features that consist of a single point.
|
POINT_ON_LINK
For features that consist of a single point on link.
|
POINT_ON_NODE
For features that consist of a single point on node.
|
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_ON_NODE
public static final Feature.FeatureType POINT_ON_LINK
public static final Feature.FeatureType POINT
public static final Feature.FeatureType LINE
public static final Feature.FeatureType MULTI_POINT_ON_NODE
public static final Feature.FeatureType MULTI_POINT_ON_LINK
public static final Feature.FeatureType MULTI_POINT
public static final Feature.FeatureType MULTI_LINE
public static final Feature.FeatureType COLLECTION
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