Enum Class BayeuxClient.State
- All Implemented Interfaces:
Serializable
,Comparable<BayeuxClient.State>
,Constable
- Enclosing class:
BayeuxClient
The states that a BayeuxClient may assume.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionState assumed when this BayeuxClient is connected to the Bayeux serverState assumed when the connect is being sent for the first timeState assumed before the handshake and when the disconnect is completedState assumed when the disconnect is being sentState assumed when the handshake is received, but before connectingState assumed when the handshake is being sentState assumed when a first handshake failed and the handshake is retried, or when the Bayeux server requests a re-handshakeState assumed when the disconnect is received but terminal actions must be performedState assumed after the handshake when the connection is broken -
Method Summary
Modifier and TypeMethodDescriptionstatic BayeuxClient.State
Returns the enum constant of this class with the specified name.static BayeuxClient.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNCONNECTED
State assumed after the handshake when the connection is broken -
HANDSHAKING
State assumed when the handshake is being sent -
REHANDSHAKING
State assumed when a first handshake failed and the handshake is retried, or when the Bayeux server requests a re-handshake -
HANDSHAKEN
State assumed when the handshake is received, but before connecting -
CONNECTING
State assumed when the connect is being sent for the first time -
CONNECTED
State assumed when this BayeuxClient is connected to the Bayeux server -
DISCONNECTING
State assumed when the disconnect is being sent -
TERMINATING
State assumed when the disconnect is received but terminal actions must be performed -
DISCONNECTED
State assumed before the handshake and when the disconnect is completed
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-