Package com.seeq.link.sdk.interfaces
Enum Class SyncMode
- All Implemented Interfaces:
Serializable
,Comparable<SyncMode>
,Constable
Enumeration of possible index modes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA FULL sync updates all items and deletes any items that no longer existAn INCREMENTAL sync updates only items that have changed and that still exist.Indicates that no sync is being requested. -
Method Summary
-
Enum Constant Details
-
NONE
Indicates that no sync is being requested. -
FULL
A FULL sync updates all items and deletes any items that no longer exist -
INCREMENTAL
An INCREMENTAL sync updates only items that have changed and that still exist. Incremental syncs are faster, so they can be performed more frequently without using too many resources on the Seeq server and source system.
-
-
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
-