public static enum NetworkConfigEvent.Type extends java.lang.Enum<NetworkConfigEvent.Type>
Enum Constant and Description |
---|
CONFIG_ADDED
Signifies that network configuration was added.
|
CONFIG_REGISTERED
Signifies that a network configuration was registered.
|
CONFIG_REMOVED
Signifies that network configuration was removed.
|
CONFIG_UNREGISTERED
Signifies that a network configuration was unregistered.
|
CONFIG_UPDATED
Signifies that network configuration was updated.
|
Modifier and Type | Method and Description |
---|---|
static NetworkConfigEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NetworkConfigEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkConfigEvent.Type CONFIG_REGISTERED
public static final NetworkConfigEvent.Type CONFIG_UNREGISTERED
public static final NetworkConfigEvent.Type CONFIG_ADDED
public static final NetworkConfigEvent.Type CONFIG_UPDATED
public static final NetworkConfigEvent.Type CONFIG_REMOVED
public static NetworkConfigEvent.Type[] values()
for (NetworkConfigEvent.Type c : NetworkConfigEvent.Type.values()) System.out.println(c);
public static NetworkConfigEvent.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null