Enum Class SavedState.Type

java.lang.Object
java.lang.Enum<SavedState.Type>
org.wildfly.prospero.api.SavedState.Type
All Implemented Interfaces:
Serializable, Comparable<SavedState.Type>, Constable
Enclosing class:
SavedState

public static enum SavedState.Type extends Enum<SavedState.Type>
  • Enum Constant Details

    • UPDATE

      public static final SavedState.Type UPDATE
    • INSTALL

      public static final SavedState.Type INSTALL
    • ROLLBACK

      public static final SavedState.Type ROLLBACK
    • CONFIG_CHANGE

      public static final SavedState.Type CONFIG_CHANGE
    • FEATURE_PACK

      public static final SavedState.Type FEATURE_PACK
      A provisioning state change. For example adding a new feature pack
    • INTERNAL_UPDATE

      public static final SavedState.Type INTERNAL_UPDATE
      Change that should not be visible to users. It might be a change required to support new capabilities.
    • UNKNOWN

      public static final SavedState.Type UNKNOWN
  • Method Details

    • values

      public static SavedState.Type[] 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 SavedState.Type 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
    • fromText

      public static SavedState.Type fromText(String text)