Enum Class SyncStatus

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

public enum SyncStatus extends Enum<SyncStatus>
Captures the state of sync'ing (aka indexing).
  • Enum Constant Details

    • SYNC_UNKNOWN

      public static final SyncStatus SYNC_UNKNOWN
      Connection has started up but there has been no sync yet.
    • SYNC_INITIALIZING

      public static final SyncStatus SYNC_INITIALIZING
      Scheduler has kicked off a sync but the connection hasn't done anything yet.
    • SYNC_IN_PROGRESS

      public static final SyncStatus SYNC_IN_PROGRESS
      Connection is actively sync'ing.
    • SYNC_ARCHIVING_DELETED_ITEMS

      public static final SyncStatus SYNC_ARCHIVING_DELETED_ITEMS
      Connection has sync'd in SyncMode.FULL mode and is now archiving deleted items.
    • SYNC_COMPLETE

      public static final SyncStatus SYNC_COMPLETE
      Connection has finished sync'ing.
    • SYNC_SUCCESS

      public static final SyncStatus SYNC_SUCCESS
      Sync was a success and the next sync has been scheduled.
    • SYNC_FAILED

      public static final SyncStatus SYNC_FAILED
      Last sync was a failure and the next sync has been scheduled.
  • Method Details

    • values

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