Enum OfflineMapParametersKey.Type
- java.lang.Object
-
- java.lang.Enum<OfflineMapParametersKey.Type>
-
- com.esri.arcgisruntime.tasks.offlinemap.OfflineMapParametersKey.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfflineMapParametersKey.Type>
- Enclosing class:
- OfflineMapParametersKey
public static enum OfflineMapParametersKey.Type extends java.lang.Enum<OfflineMapParametersKey.Type>
Indicates the type of parameters object used to take layers offline.- Since:
- 100.4.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPORT_TILE_CACHE
The parameter is of typeExportTileCacheParameters
EXPORT_VECTOR_TILES
The parameter is of typeExportVectorTilesParameters
GENERATE_GEODATABASE
The parameter is of typeGenerateGeodatabaseParameters
UNKNOWN
The parameter type is unknown
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfflineMapParametersKey.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfflineMapParametersKey.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERATE_GEODATABASE
public static final OfflineMapParametersKey.Type GENERATE_GEODATABASE
The parameter is of typeGenerateGeodatabaseParameters
- Since:
- 100.4.0
-
EXPORT_VECTOR_TILES
public static final OfflineMapParametersKey.Type EXPORT_VECTOR_TILES
The parameter is of typeExportVectorTilesParameters
- Since:
- 100.4.0
-
EXPORT_TILE_CACHE
public static final OfflineMapParametersKey.Type EXPORT_TILE_CACHE
The parameter is of typeExportTileCacheParameters
- Since:
- 100.4.0
-
UNKNOWN
public static final OfflineMapParametersKey.Type UNKNOWN
The parameter type is unknown- Since:
- 100.9.0
-
-
Method Detail
-
values
public static OfflineMapParametersKey.Type[] 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 (OfflineMapParametersKey.Type c : OfflineMapParametersKey.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfflineMapParametersKey.Type 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
-
-