public static enum AepBusConnection.State extends Enum<AepBusConnection.State>
| Enum Constant and Description |
|---|
CLOSED
The bus connection has been closed.
|
CREATED
The bus connection has just been created
|
FAILED
The bus connection has failed.
|
OPEN
The bus connection is open
|
OPENING
The bus connection is in the process of opening.
|
STARTED
The bus connection has been started and the connection is processing
events from the binding.
|
| Modifier and Type | Method and Description |
|---|---|
static AepBusConnection.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepBusConnection.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepBusConnection.State CREATED
public static final AepBusConnection.State OPENING
public static final AepBusConnection.State OPEN
public static final AepBusConnection.State STARTED
public static final AepBusConnection.State FAILED
public static final AepBusConnection.State CLOSED
public static AepBusConnection.State[] values()
for (AepBusConnection.State c : AepBusConnection.State.values()) System.out.println(c);
public static AepBusConnection.State valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019 N5 Technologies, Inc. All Rights Reserved.