Module com.esri.arcgisruntime
Enum Class GenerateLayerOption.QueryOption
java.lang.Object
java.lang.Enum<GenerateLayerOption.QueryOption>
com.esri.arcgisruntime.tasks.geodatabase.GenerateLayerOption.QueryOption
- All Implemented Interfaces:
Serializable
,Comparable<GenerateLayerOption.QueryOption>
,Constable
- Enclosing class:
GenerateLayerOption
Control which features for a layer or table are copied from the server when creating a geodatabase.
- Since:
- 100.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll features are copied from the server when creating a geodatabase.Combines withGenerateLayerOption.isIncludeRelated()
, if false then no features are copied from the server.Combines withGenerateLayerOption.getWhereClause()
andGenerateLayerOption.isUseGeometry()
properties when copying features from the server to take offline. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static GenerateLayerOption.QueryOption[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
All features are copied from the server when creating a geodatabase.- Since:
- 100.1.0
-
NONE
Combines withGenerateLayerOption.isIncludeRelated()
, if false then no features are copied from the server. IfGenerateLayerOption.isIncludeRelated()
is true then only features that are in a relationship are included. When used in conjunction with upload-only synchronization, this enables a faster upload scenario where new features are only sent to the server and none are downloaded.- Since:
- 100.1.0
- See Also:
-
USE_FILTER
Combines withGenerateLayerOption.getWhereClause()
andGenerateLayerOption.isUseGeometry()
properties when copying features from the server to take offline.- Since:
- 100.1.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
-