Enum Class CADatabaseUpgrade

java.lang.Object
java.lang.Enum<CADatabaseUpgrade>
com.io7m.cardant.database.api.CADatabaseUpgrade
All Implemented Interfaces:
Serializable, Comparable<CADatabaseUpgrade>, Constable

public enum CADatabaseUpgrade extends Enum<CADatabaseUpgrade>
Upgrade or do not upgrade a database.
  • Enum Constant Details

    • UPGRADE_DATABASE

      public static final CADatabaseUpgrade UPGRADE_DATABASE
      Upgrade the database.
    • DO_NOT_UPGRADE_DATABASE

      public static final CADatabaseUpgrade DO_NOT_UPGRADE_DATABASE
      Do not upgrade the database.
  • Method Details

    • values

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