public static enum OvsdbInterface.Type extends Enum<OvsdbInterface.Type>
| Enum Constant and Description |
|---|
GRE
An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4 IPsec tunnel.
|
INTERNAL
A simulated network device that sends and receives traffic.
|
PATCH
A pair of virtual devices that act as a patch cable.
|
SYSTEM
An ordinary network device, e.g.
|
TAP
A TUN/TAP device managed by Open vSwitch.
|
VXLAN
An Ethernet tunnel over the experimental, UDP-based VXLAN protocol.
|
| Modifier and Type | Method and Description |
|---|---|
static OvsdbInterface.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OvsdbInterface.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OvsdbInterface.Type SYSTEM
public static final OvsdbInterface.Type INTERNAL
public static final OvsdbInterface.Type TAP
public static final OvsdbInterface.Type GRE
public static final OvsdbInterface.Type VXLAN
public static final OvsdbInterface.Type PATCH
public static OvsdbInterface.Type[] values()
for (OvsdbInterface.Type c : OvsdbInterface.Type.values()) System.out.println(c);
public static OvsdbInterface.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