public static enum ServiceNetworkEvent.Type extends Enum<ServiceNetworkEvent.Type>
| Enum Constant and Description |
|---|
SERVICE_NETWORK_CREATED
Signifies that a new service network has been created.
|
SERVICE_NETWORK_PROVIDER_ADDED
Signifies that provider network was added.
|
SERVICE_NETWORK_PROVIDER_REMOVED
Signifies that provider network was removed.
|
SERVICE_NETWORK_REMOVED
Signifies that a service network has been removed.
|
SERVICE_NETWORK_UPDATED
Signifies that some service network attributes have changed.
|
SERVICE_PORT_CREATED
Signifies that a new service port has been created.
|
SERVICE_PORT_REMOVED
Signifies that a service port has been removed.
|
SERVICE_PORT_UPDATED
Signifies that some service port attributes have changed.
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceNetworkEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceNetworkEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceNetworkEvent.Type SERVICE_NETWORK_CREATED
public static final ServiceNetworkEvent.Type SERVICE_NETWORK_UPDATED
public static final ServiceNetworkEvent.Type SERVICE_NETWORK_PROVIDER_ADDED
public static final ServiceNetworkEvent.Type SERVICE_NETWORK_PROVIDER_REMOVED
public static final ServiceNetworkEvent.Type SERVICE_NETWORK_REMOVED
public static final ServiceNetworkEvent.Type SERVICE_PORT_CREATED
public static final ServiceNetworkEvent.Type SERVICE_PORT_UPDATED
public static final ServiceNetworkEvent.Type SERVICE_PORT_REMOVED
public static ServiceNetworkEvent.Type[] values()
for (ServiceNetworkEvent.Type c : ServiceNetworkEvent.Type.values()) System.out.println(c);
public static ServiceNetworkEvent.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 nullCopyright © 2018. All rights reserved.