public static enum NetconfDeviceOutputEvent.Type extends Enum<NetconfDeviceOutputEvent.Type>
| Enum Constant and Description |
|---|
DEVICE_ERROR
Signifies that the device has encountered an error.
|
DEVICE_NOTIFICATION
Signifies that the device sent a notification.
|
DEVICE_REPLY
Signifies that sent a reply to a request.
|
DEVICE_UNREGISTERED
Signifies that the device is not reachable.
|
| Modifier and Type | Method and Description |
|---|---|
static NetconfDeviceOutputEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetconfDeviceOutputEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetconfDeviceOutputEvent.Type DEVICE_REPLY
public static final NetconfDeviceOutputEvent.Type DEVICE_NOTIFICATION
public static final NetconfDeviceOutputEvent.Type DEVICE_UNREGISTERED
public static final NetconfDeviceOutputEvent.Type DEVICE_ERROR
public static NetconfDeviceOutputEvent.Type[] values()
for (NetconfDeviceOutputEvent.Type c : NetconfDeviceOutputEvent.Type.values()) System.out.println(c);
public static NetconfDeviceOutputEvent.Type 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 null