Module com.esri.arcgisruntime
Enum Class SyncGeodatabaseParameters.SyncDirection
java.lang.Object
java.lang.Enum<SyncGeodatabaseParameters.SyncDirection>
com.esri.arcgisruntime.tasks.geodatabase.SyncGeodatabaseParameters.SyncDirection
- All Implemented Interfaces:
Serializable
,Comparable<SyncGeodatabaseParameters.SyncDirection>
,Constable
- Enclosing class:
SyncGeodatabaseParameters
public static enum SyncGeodatabaseParameters.SyncDirection
extends Enum<SyncGeodatabaseParameters.SyncDirection>
Signifies the geodatabase synchronization direction.
- Since:
- 100.0.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 ConstantDescriptionThe geodatabase changes are both uploaded and downloaded.The geodatabase changes are downloaded only.There is no specified geodatabase sync direction.The geodatabase changes are uploaded only. -
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
-
BIDIRECTIONAL
The geodatabase changes are both uploaded and downloaded.- Since:
- 100.0.0
-
UPLOAD
The geodatabase changes are uploaded only.- Since:
- 100.0.0
-
DOWNLOAD
The geodatabase changes are downloaded only.- Since:
- 100.0.0
-
NONE
There is no specified geodatabase sync direction.- 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
-