Enum Class Status

java.lang.Object
java.lang.Enum<Status>
be.gaudry.model.bibliobrol.enumeration.Status
All Implemented Interfaces:
Serializable, Comparable<Status>, Constable

public enum Status extends Enum<Status>
Deprecated.
Used to flag, and do something later. May be used to implement undo methods. Default value is "none" "blank" value is used to flag as new Actor container (blanks are not saved).
Since:
1.0 27-nov.-07
Author:
Steph GAUDRY
  • Enum Constant Details

    • TO_DELETE

      public static final Status TO_DELETE
      Deprecated.
      to delete
    • TO_UPDATE

      public static final Status TO_UPDATE
      Deprecated.
      to save new values
    • TO_ADD

      public static final Status TO_ADD
      Deprecated.
      to add
    • BLANK

      public static final Status BLANK
      Deprecated.
      "blank" value is used to flag as new category container (blanks are not saved).
    • NONE

      public static final Status NONE
      Deprecated.
      Default value
    • TO_APP_DELETE

      public static final Status TO_APP_DELETE
      Deprecated.
      to delete in the bibliobrol application
    • TO_APP_ADD

      public static final Status TO_APP_ADD
      Deprecated.
      to add in the bibliobrol application
    • MODIFIED

      public static final Status MODIFIED
      Deprecated.
      to notify than a modification has dons
  • Method Details

    • values

      public static Status[] values()
      Deprecated.
      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 Status valueOf(String name)
      Deprecated.
      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