Enum Connection.Status

java.lang.Object
java.lang.Enum<Connection.Status>
org.jupnp.support.model.Connection.Status
Alle implementierten Schnittstellen:
Serializable, Comparable<Connection.Status>
Umschließende Klasse:
Connection

public static enum Connection.Status extends Enum<Connection.Status>
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    At least one client has successfully initiated an Internet connection using this instance.
    The WANConnectionDevice is in the process of initiating a connection for the first time after the connection became disconnected.
    No ISP connection is active (or being activated) from this connection instance.
    The WANConnectionDevice is in the process of terminating a connection.
    The connection is active (packets are allowed to flow through), but will transition to Disconnecting state after a certain period.
    This value indicates that other variables in the service table are uninitialized or in an invalid state.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.
    Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.

    Von Klasse geerbte Methoden java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Von Klasse geerbte Methoden java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum-Konstanten - Details

    • Unconfigured

      public static final Connection.Status Unconfigured
      This value indicates that other variables in the service table are uninitialized or in an invalid state.
    • Connecting

      public static final Connection.Status Connecting
      The WANConnectionDevice is in the process of initiating a connection for the first time after the connection became disconnected.
    • Connected

      public static final Connection.Status Connected
      At least one client has successfully initiated an Internet connection using this instance.
    • PendingDisconnect

      public static final Connection.Status PendingDisconnect
      The connection is active (packets are allowed to flow through), but will transition to Disconnecting state after a certain period.
    • Disconnecting

      public static final Connection.Status Disconnecting
      The WANConnectionDevice is in the process of terminating a connection. On successful termination, ConnectionStatus transitions to Disconnected.
    • Disconnected

      public static final Connection.Status Disconnected
      No ISP connection is active (or being activated) from this connection instance. No packets are transiting the gateway.
  • Methodendetails

    • values

      public static Connection.Status[] values()
      Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
    • valueOf

      public static Connection.Status valueOf(String name)
      Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird