Enum ArcGISMapServiceSublayerInfo.ServiceType
- java.lang.Object
-
- java.lang.Enum<ArcGISMapServiceSublayerInfo.ServiceType>
-
- com.esri.arcgisruntime.arcgisservices.ArcGISMapServiceSublayerInfo.ServiceType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ArcGISMapServiceSublayerInfo.ServiceType>
- Enclosing class:
- ArcGISMapServiceSublayerInfo
public static enum ArcGISMapServiceSublayerInfo.ServiceType extends java.lang.Enum<ArcGISMapServiceSublayerInfo.ServiceType>
An enumeration of the different types of the ArcGIS Map Service sublayer.- Since:
- 100.1.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FEATURE_LAYER
A feature layer.GROUP_LAYER
A group layer.NETWORK_ANALYSIS_LAYER
A network analysis layer.RASTER_LAYER
A raster layer.TABLE
A feature table.UNKNOWN
An unknown/unsupported service type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArcGISMapServiceSublayerInfo.ServiceType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ArcGISMapServiceSublayerInfo.ServiceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FEATURE_LAYER
public static final ArcGISMapServiceSublayerInfo.ServiceType FEATURE_LAYER
A feature layer.- Since:
- 100.1.0
-
TABLE
public static final ArcGISMapServiceSublayerInfo.ServiceType TABLE
A feature table.- Since:
- 100.1.0
-
GROUP_LAYER
public static final ArcGISMapServiceSublayerInfo.ServiceType GROUP_LAYER
A group layer.- Since:
- 100.1.0
-
RASTER_LAYER
public static final ArcGISMapServiceSublayerInfo.ServiceType RASTER_LAYER
A raster layer.- Since:
- 100.1.0
-
NETWORK_ANALYSIS_LAYER
public static final ArcGISMapServiceSublayerInfo.ServiceType NETWORK_ANALYSIS_LAYER
A network analysis layer.- Since:
- 100.1.0
-
UNKNOWN
public static final ArcGISMapServiceSublayerInfo.ServiceType UNKNOWN
An unknown/unsupported service type.- Since:
- 100.1.0
-
-
Method Detail
-
values
public static ArcGISMapServiceSublayerInfo.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 (ArcGISMapServiceSublayerInfo.ServiceType c : ArcGISMapServiceSublayerInfo.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 ArcGISMapServiceSublayerInfo.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
-
-