Package ai.velr

Enum Class MigrationStatus

All Implemented Interfaces:
Serializable, Comparable<MigrationStatus>, Constable

public enum MigrationStatus extends Enum<MigrationStatus>
Outcome of an explicit Velr schema migration.
  • Enum Constant Details

    • ALREADY_CURRENT

      public static final MigrationStatus ALREADY_CURRENT
      The database schema already matches the runtime.
    • MIGRATED

      public static final MigrationStatus MIGRATED
      One or more migration steps were applied.
  • Method Details

    • values

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