Enum Class AbstractEndpoint.BindState
- All Implemented Interfaces:
Serializable, Comparable<AbstractEndpoint.BindState>, Constable
- Enclosing class:
AbstractEndpoint<S,U>
Enum representing the possible states of the bind operation.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe endpoint was bound during initialization.The endpoint was bound during start.The socket was closed on stop (bind on start mode).The endpoint has not been bound to a port. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisBound()Check if the endpoint is currently bound.static AbstractEndpoint.BindStateReturns the enum constant of this class with the specified name.static AbstractEndpoint.BindState[]values()Returns an array containing the constants of this enum class, in the order they are declared.booleanwasBound()Check if the endpoint was previously bound.
-
Enum Constant Details
-
UNBOUND
The endpoint has not been bound to a port. -
BOUND_ON_INIT
The endpoint was bound during initialization. -
BOUND_ON_START
The endpoint was bound during start. -
SOCKET_CLOSED_ON_STOP
The socket was closed on stop (bind on start mode).
-
-
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
-
isBound
public boolean isBound()Check if the endpoint is currently bound.- Returns:
- True if the endpoint is currently bound
-
wasBound
public boolean wasBound()Check if the endpoint was previously bound.- Returns:
- True if the endpoint was previously bound
-