public static enum TenantNetwork.State extends Enum<TenantNetwork.State>
| Enum Constant and Description |
|---|
ACTIVE
Signifies that a tenantNetwork is currently active.This state means
that this network is available.
|
BUILD
Signifies that a tenantNetwork is currently built.
|
DOWN
Signifies that a tenantNetwork is currently unavailable.
|
ERROR
Signifies that a tenantNetwork is currently error.
|
| Modifier and Type | Method and Description |
|---|---|
static TenantNetwork.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TenantNetwork.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TenantNetwork.State ACTIVE
public static final TenantNetwork.State BUILD
public static final TenantNetwork.State DOWN
public static final TenantNetwork.State ERROR
public static TenantNetwork.State[] values()
for (TenantNetwork.State c : TenantNetwork.State.values()) System.out.println(c);
public static TenantNetwork.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 null