Module com.esri.arcgisruntime
Enum Class GenerateOfflineMapParameters.DestinationTableRowFilter
java.lang.Object
java.lang.Enum<GenerateOfflineMapParameters.DestinationTableRowFilter>
com.esri.arcgisruntime.tasks.offlinemap.GenerateOfflineMapParameters.DestinationTableRowFilter
- All Implemented Interfaces:
Serializable
,Comparable<GenerateOfflineMapParameters.DestinationTableRowFilter>
,Constable
- Enclosing class:
GenerateOfflineMapParameters
public static enum GenerateOfflineMapParameters.DestinationTableRowFilter
extends Enum<GenerateOfflineMapParameters.DestinationTableRowFilter>
Indicates whether tables will contain all rows or can be filtered to a smaller set of related rows.
- Since:
- 100.4.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates all rows of a table will be taken offline.Indicates that, where appropriate, a table will be filtered to only related rows when taking the table offline. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
Indicates all rows of a table will be taken offline.- Since:
- 100.4.0
-
RELATED_ONLY
Indicates that, where appropriate, a table will be filtered to only related rows when taking the table offline.- Since:
- 100.4.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
-