Enum SyncGeodatabaseParameters.SyncDirection
- java.lang.Object
-
- java.lang.Enum<SyncGeodatabaseParameters.SyncDirection>
-
- com.esri.arcgisruntime.tasks.geodatabase.SyncGeodatabaseParameters.SyncDirection
-
- All Implemented Interfaces:
Serializable
,Comparable<SyncGeodatabaseParameters.SyncDirection>
- Enclosing class:
- SyncGeodatabaseParameters
public static enum SyncGeodatabaseParameters.SyncDirection extends Enum<SyncGeodatabaseParameters.SyncDirection>
Signifies the geodatabase synchronization direction.- Since:
- 100.0.0
- See Also:
SyncGeodatabaseParameters.getSyncDirection()
,SyncGeodatabaseParameters.setSyncDirection(SyncDirection)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIDIRECTIONAL
The geodatabase changes are both uploaded and downloaded.DOWNLOAD
The geodatabase changes are downloaded only.NONE
There is no specified geodatabase sync direction.UPLOAD
The geodatabase changes are uploaded only.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SyncGeodatabaseParameters.SyncDirection
valueOf(String name)
Returns the enum constant of this type with the specified name.static SyncGeodatabaseParameters.SyncDirection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIDIRECTIONAL
public static final SyncGeodatabaseParameters.SyncDirection BIDIRECTIONAL
The geodatabase changes are both uploaded and downloaded.- Since:
- 100.0.0
-
UPLOAD
public static final SyncGeodatabaseParameters.SyncDirection UPLOAD
The geodatabase changes are uploaded only.- Since:
- 100.0.0
-
DOWNLOAD
public static final SyncGeodatabaseParameters.SyncDirection DOWNLOAD
The geodatabase changes are downloaded only.- Since:
- 100.0.0
-
NONE
public static final SyncGeodatabaseParameters.SyncDirection NONE
There is no specified geodatabase sync direction.- Since:
- 100.0.0
-
-
Method Detail
-
values
public static SyncGeodatabaseParameters.SyncDirection[] 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 (SyncGeodatabaseParameters.SyncDirection c : SyncGeodatabaseParameters.SyncDirection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyncGeodatabaseParameters.SyncDirection valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-