Module com.esri.arcgisruntime
Enum Class ArcGISFeatureLayerInfo.ServiceType
java.lang.Object
java.lang.Enum<ArcGISFeatureLayerInfo.ServiceType>
com.esri.arcgisruntime.arcgisservices.ArcGISFeatureLayerInfo.ServiceType
- All Implemented Interfaces:
Serializable
,Comparable<ArcGISFeatureLayerInfo.ServiceType>
,Constable
- Enclosing class:
ArcGISFeatureLayerInfo
public static enum ArcGISFeatureLayerInfo.ServiceType
extends Enum<ArcGISFeatureLayerInfo.ServiceType>
The type of the dataset underlying an ArcGISFeatureLayerInfo
This 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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn annotation layer type.A dimension layer Type.A group layer type.A feature layer type.A table type.Unknown/unsupported dataset type. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ArcGISFeatureLayerInfo.ServiceType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LAYER
A feature layer type. Containing geometrical features such as points, lines, or polygons.- Since:
- 100.0.0
-
ANNOTATION_LAYER
An annotation layer type. Containing text features to be drawn at specific positions.- Since:
- 100.6.0
-
DIMENSION_LAYER
A dimension layer Type. Containing schematic measurement features to be drawn at specific positions.- Since:
- 100.13.0
-
TABLE
A table type.- Since:
- 100.0.0
-
GROUP_LAYER
A group layer type.- Since:
- 100.0.0
-
UNKNOWN
Unknown/unsupported dataset type.- Since:
- 100.0.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-