public static enum FeatureLayerMetadata.FeatureLayerType extends java.lang.Enum<FeatureLayerMetadata.FeatureLayerType>
Enum Constant and Description |
---|
COLLECTION
This is the most generic feature layer type.
|
LINE
If all features in this feature layer are of type LINE.
|
MULTI_LINE
If all features in this feature layer are of type LINE or MULTI_LINE.
|
MULTI_POINT
If all features in this feature layer are of type POINT_ON_NODE, POINT_ON_LINK, POINT MULTI_POINT_ON_NODE, MULTI_POINT_ON_LINK, or MULTI_POINT.
|
MULTI_POINT_ON_LINK
If all features in this feature layer are of type POINT_ON_LINK or MULTI_POINT_ON_LINK.
|
MULTI_POINT_ON_NODE
If all features in this feature layer are of type POINT_ON_NODE or MULTI_POINT_ON_NODE.
|
POINT
If all features in this feature layer are of type POINT_ON_NODE, POINT_ON_LINK, or POINT.
|
POINT_ON_LINK
If all features in this feature layer are of type POINT_ON_LINK.
|
POINT_ON_NODE
If all features in this feature layer are of type POINT_ON_NODE.
|
Modifier and Type | Method and Description |
---|---|
static FeatureLayerMetadata.FeatureLayerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureLayerMetadata.FeatureLayerType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final FeatureLayerMetadata.FeatureLayerType POINT_ON_NODE
public static final FeatureLayerMetadata.FeatureLayerType POINT_ON_LINK
public static final FeatureLayerMetadata.FeatureLayerType POINT
public static final FeatureLayerMetadata.FeatureLayerType LINE
public static final FeatureLayerMetadata.FeatureLayerType MULTI_POINT_ON_NODE
public static final FeatureLayerMetadata.FeatureLayerType MULTI_POINT_ON_LINK
public static final FeatureLayerMetadata.FeatureLayerType MULTI_POINT
public static final FeatureLayerMetadata.FeatureLayerType MULTI_LINE
public static final FeatureLayerMetadata.FeatureLayerType COLLECTION
public static FeatureLayerMetadata.FeatureLayerType[] values()
for (FeatureLayerMetadata.FeatureLayerType c : FeatureLayerMetadata.FeatureLayerType.values()) System.out.println(c);
public static FeatureLayerMetadata.FeatureLayerType 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