Enum Class ConnectionState

java.lang.Object
java.lang.Enum<ConnectionState>
com.microsoft.graph.externalconnectors.models.ConnectionState
All Implemented Interfaces:
Serializable, Comparable<ConnectionState>, Constable

public enum ConnectionState extends Enum<ConnectionState>
The Enum Connection State.
  • Enum Constant Details

    • DRAFT

      public static final ConnectionState DRAFT
      draft
    • READY

      public static final ConnectionState READY
      ready
    • OBSOLETE

      public static final ConnectionState OBSOLETE
      obsolete
    • LIMIT_EXCEEDED

      public static final ConnectionState LIMIT_EXCEEDED
      limit Exceeded
    • UNKNOWN_FUTURE_VALUE

      public static final ConnectionState UNKNOWN_FUTURE_VALUE
      unknown Future Value
    • UNEXPECTED_VALUE

      public static final ConnectionState UNEXPECTED_VALUE
      For ConnectionState values that were not expected from the service
  • Method Details

    • values

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