public static enum ServiceNetwork.NetworkType extends Enum<ServiceNetwork.NetworkType>
| Enum Constant and Description |
|---|
ACCESS_AGENT
Special network for R-CORD access agent.
|
FLAT
Provider network that offers connectivity to the physical network via L2.
|
MANAGEMENT_HOST
Virtual instance management network that offers connectivity to head node.
|
MANAGEMENT_LOCAL
Virtual instance management network that offers limited connectivity
between the virtual instance and the host machine.
|
PRIVATE
Isolated tenant network.
|
PUBLIC
Provider network that offers connectivity to external network via L3.
|
VSG
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceNetwork.NetworkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceNetwork.NetworkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceNetwork.NetworkType PRIVATE
public static final ServiceNetwork.NetworkType PUBLIC
public static final ServiceNetwork.NetworkType FLAT
public static final ServiceNetwork.NetworkType MANAGEMENT_HOST
public static final ServiceNetwork.NetworkType MANAGEMENT_LOCAL
@Deprecated public static final ServiceNetwork.NetworkType VSG
public static final ServiceNetwork.NetworkType ACCESS_AGENT
public static ServiceNetwork.NetworkType[] values()
for (ServiceNetwork.NetworkType c : ServiceNetwork.NetworkType.values()) System.out.println(c);
public static ServiceNetwork.NetworkType 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.