public static enum OvsdbEvent.Type extends Enum<OvsdbEvent.Type>
| Enum Constant and Description |
|---|
PORT_ADDED
Signifies that a new ovs port update has been detected.
|
PORT_REMOVED
Signifies that a ovs port has been removed.
|
| Modifier and Type | Method and Description |
|---|---|
static OvsdbEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OvsdbEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OvsdbEvent.Type PORT_ADDED
public static final OvsdbEvent.Type PORT_REMOVED
public static OvsdbEvent.Type[] values()
for (OvsdbEvent.Type c : OvsdbEvent.Type.values()) System.out.println(c);
public static OvsdbEvent.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