public enum TransportDomain extends java.lang.Enum<TransportDomain>
Enum Constant and Description |
---|
IPV4
IPv4 transport domain
|
IPV4Z
IPv4z transport domain
|
IPV6
IPv6 transport domain
|
IPV6Z
IPv6z transport domain
|
Modifier and Type | Method and Description |
---|---|
static TransportDomain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransportDomain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransportDomain IPV4
public static final TransportDomain IPV4Z
public static final TransportDomain IPV6
public static final TransportDomain IPV6Z
public static TransportDomain[] values()
for (TransportDomain c : TransportDomain.values()) System.out.println(c);
public static TransportDomain 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