Module com.esri.arcgisruntime
Enum Class GenerateGeodatabaseParameters.AttachmentSyncDirection
java.lang.Object
java.lang.Enum<GenerateGeodatabaseParameters.AttachmentSyncDirection>
com.esri.arcgisruntime.tasks.geodatabase.GenerateGeodatabaseParameters.AttachmentSyncDirection
- All Implemented Interfaces:
Serializable
,Comparable<GenerateGeodatabaseParameters.AttachmentSyncDirection>
,Constable
- Enclosing class:
GenerateGeodatabaseParameters
public static enum GenerateGeodatabaseParameters.AttachmentSyncDirection
extends Enum<GenerateGeodatabaseParameters.AttachmentSyncDirection>
Specifies the direction to synchronize attachments when a geodatabase is synchronized against its originating service.
- 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 ConstantDescriptionAttachment edits can be both uploaded from the client and downloaded from the service when syncing.Attachment edits are never synced from either the client or the server.Attachment edits can only be uploaded from the client when syncing. -
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
Attachment edits can be both uploaded from the client and downloaded from the service when syncing.- Since:
- 100.0.0
-
UPLOAD
Attachment edits can only be uploaded from the client when syncing. This is useful in cases where the data collector does not want to consume space with attachments from the service, but does need to collect new attachments.- Since:
- 100.0.0
-
NONE
Attachment edits are never synced from either the client or the server.- 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
-