Enum ArcGISFeatureLayerInfo.ServiceType
- java.lang.Object
-
- java.lang.Enum<ArcGISFeatureLayerInfo.ServiceType>
-
- com.esri.arcgisruntime.arcgisservices.ArcGISFeatureLayerInfo.ServiceType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ArcGISFeatureLayerInfo.ServiceType>
- Enclosing class:
- ArcGISFeatureLayerInfo
public static enum ArcGISFeatureLayerInfo.ServiceType extends java.lang.Enum<ArcGISFeatureLayerInfo.ServiceType>
The type of the dataset underlying an ArcGISFeatureLayerInfoThis is used to determine the type of the dataset behind an
ArcGISFeatureLayerInfo
. Spatial datasets are considered to be layers whereas non-spatial datasets are tables.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATION_LAYER
An annotation layer type.DIMENSION_LAYER
A dimension layer Type.GROUP_LAYER
A group layer type.LAYER
A feature layer type.TABLE
A table type.UNKNOWN
Unknown/unsupported dataset type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArcGISFeatureLayerInfo.ServiceType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ArcGISFeatureLayerInfo.ServiceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAYER
public static final ArcGISFeatureLayerInfo.ServiceType LAYER
A feature layer type. Containing geometrical features such as points, lines, or polygons.- Since:
- 100.0.0
-
ANNOTATION_LAYER
public static final ArcGISFeatureLayerInfo.ServiceType ANNOTATION_LAYER
An annotation layer type. Containing text features to be drawn at specific positions.- Since:
- 100.6.0
-
DIMENSION_LAYER
public static final ArcGISFeatureLayerInfo.ServiceType DIMENSION_LAYER
A dimension layer Type. Containing schematic measurement features to be drawn at specific positions.- Since:
- 100.13.0
-
TABLE
public static final ArcGISFeatureLayerInfo.ServiceType TABLE
A table type.- Since:
- 100.0.0
-
GROUP_LAYER
public static final ArcGISFeatureLayerInfo.ServiceType GROUP_LAYER
A group layer type.- Since:
- 100.0.0
-
UNKNOWN
public static final ArcGISFeatureLayerInfo.ServiceType UNKNOWN
Unknown/unsupported dataset type.- Since:
- 100.0.0
-
-
Method Detail
-
values
public static ArcGISFeatureLayerInfo.ServiceType[] 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 (ArcGISFeatureLayerInfo.ServiceType c : ArcGISFeatureLayerInfo.ServiceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArcGISFeatureLayerInfo.ServiceType 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
-
-