Enum ActualState

java.lang.Object
java.lang.Enum<ActualState>
com.azure.resourcemanager.synapse.models.ActualState
All Implemented Interfaces:
Serializable, Comparable<ActualState>, java.lang.constant.Constable

public enum ActualState extends Enum<ActualState>
Actual state.
  • Enum Constant Details

    • ENABLING

      public static final ActualState ENABLING
      Enum value Enabling.
    • ENABLED

      public static final ActualState ENABLED
      Enum value Enabled.
    • DISABLING

      public static final ActualState DISABLING
      Enum value Disabling.
    • DISABLED

      public static final ActualState DISABLED
      Enum value Disabled.
    • UNKNOWN

      public static final ActualState UNKNOWN
      Enum value Unknown.
  • Method Details

    • values

      public static ActualState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ActualState valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static ActualState fromString(String value)
      Parses a serialized value to a ActualState instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed ActualState object, or null if unable to parse.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ActualState>