Enum Class SyncMode

java.lang.Object
java.lang.Enum<SyncMode>
com.seeq.link.sdk.interfaces.SyncMode
All Implemented Interfaces:
Serializable, Comparable<SyncMode>, Constable

public enum SyncMode extends Enum<SyncMode>
Enumeration of possible index modes.
  • Enum Constant Details

    • NONE

      public static final SyncMode NONE
      Indicates that no sync is being requested.
    • FULL

      public static final SyncMode FULL
      A FULL sync updates all items and deletes any items that no longer exist
    • INCREMENTAL

      public static final SyncMode 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

      public static SyncMode[] 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

      public static SyncMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null