Package oracle.spatial.network.lod
Enum FeatureLayerMetadata.FeatureLayerType
- java.lang.Object
-
- java.lang.Enum<FeatureLayerMetadata.FeatureLayerType>
-
- oracle.spatial.network.lod.FeatureLayerMetadata.FeatureLayerType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FeatureLayerMetadata.FeatureLayerType>
- Enclosing class:
- FeatureLayerMetadata
public static enum FeatureLayerMetadata.FeatureLayerType extends java.lang.Enum<FeatureLayerMetadata.FeatureLayerType>
A list of valid feature layer types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLLECTIONThis is the most generic feature layer type.LINEIf all features in this feature layer are of type LINE.MULTI_LINEIf all features in this feature layer are of type LINE or MULTI_LINE.MULTI_POINTIf 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_LINKIf all features in this feature layer are of type POINT_ON_LINK or MULTI_POINT_ON_LINK.MULTI_POINT_ON_NODEIf all features in this feature layer are of type POINT_ON_NODE or MULTI_POINT_ON_NODE.POINTIf all features in this feature layer are of type POINT_ON_NODE, POINT_ON_LINK, or POINT.POINT_ON_LINKIf all features in this feature layer are of type POINT_ON_LINK.POINT_ON_NODEIf all features in this feature layer are of type POINT_ON_NODE.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureLayerMetadata.FeatureLayerTypevalueOf(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.
-
-
-
Enum Constant Detail
-
POINT_ON_NODE
public static final FeatureLayerMetadata.FeatureLayerType POINT_ON_NODE
If all features in this feature layer are of type POINT_ON_NODE.
-
POINT_ON_LINK
public static final FeatureLayerMetadata.FeatureLayerType POINT_ON_LINK
If all features in this feature layer are of type POINT_ON_LINK.
-
POINT
public static final FeatureLayerMetadata.FeatureLayerType POINT
If all features in this feature layer are of type POINT_ON_NODE, POINT_ON_LINK, or POINT.
-
LINE
public static final FeatureLayerMetadata.FeatureLayerType LINE
If all features in this feature layer are of type LINE.
-
MULTI_POINT_ON_NODE
public static final FeatureLayerMetadata.FeatureLayerType MULTI_POINT_ON_NODE
If all features in this feature layer are of type POINT_ON_NODE or MULTI_POINT_ON_NODE.
-
MULTI_POINT_ON_LINK
public static final FeatureLayerMetadata.FeatureLayerType MULTI_POINT_ON_LINK
If all features in this feature layer are of type POINT_ON_LINK or MULTI_POINT_ON_LINK.
-
MULTI_POINT
public static final FeatureLayerMetadata.FeatureLayerType 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_LINE
public static final FeatureLayerMetadata.FeatureLayerType MULTI_LINE
If all features in this feature layer are of type LINE or MULTI_LINE.
-
COLLECTION
public static final FeatureLayerMetadata.FeatureLayerType COLLECTION
This is the most generic feature layer type. It can be used to represent feature layers containing any feature types.
-
-
Method Detail
-
values
public static FeatureLayerMetadata.FeatureLayerType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FeatureLayerMetadata.FeatureLayerType c : FeatureLayerMetadata.FeatureLayerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureLayerMetadata.FeatureLayerType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-