Enum Class ExportStatus

java.lang.Object
java.lang.Enum<ExportStatus>
de.espirit.firstspirit.store.access.nexport.ExportStatus
All Implemented Interfaces:
Serializable, Comparable<ExportStatus>, Constable

public enum ExportStatus extends Enum<ExportStatus>
Represents a status for an ExportInfo or ExportInfoFileHandle. The types are
Since:
5.2.1403
  • Enum Constant Details

    • CREATED

      public static final ExportStatus CREATED
      Used to flag an element as created ( = a new one ).
      Since:
      5.2.1403
    • UPDATED

      public static final ExportStatus UPDATED
      Used to flag an element as updated ( = an old - but changed - one). Updated elements which have been moved to a different location are marked as moved.
      Since:
      5.2.1403
    • DELETED

      public static final ExportStatus DELETED
      Used to flag an element as deleted ( = an old one that no longer exists ).
      Since:
      5.2.1403
    • MOVED

      public static final ExportStatus MOVED
      Used to flag an element as moved ( = an old one that has been moved to different location). Updated elements which have been moved to a different location are always marked as moved.
      Since:
      5.2.1403
  • Method Details

    • values

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