public static enum MappingAddress.Type extends Enum<MappingAddress.Type>
| Enum Constant and Description |
|---|
AS
Autonomous System Number.
|
DN
Distinguished Name.
|
ETH
Ethernet Address (MAC Address).
|
EXTENSION
Extension Address.
|
IPV4
IPv4 Address.
|
IPV6
IPv6 Address.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingAddress.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingAddress.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingAddress.Type IPV4
public static final MappingAddress.Type IPV6
public static final MappingAddress.Type AS
public static final MappingAddress.Type ETH
public static final MappingAddress.Type DN
public static final MappingAddress.Type EXTENSION
public static MappingAddress.Type[] values()
for (MappingAddress.Type c : MappingAddress.Type.values()) System.out.println(c);
public static MappingAddress.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