public static enum LocalIpPrefixEntry.IpPrefixType extends Enum<LocalIpPrefixEntry.IpPrefixType>
| Enum Constant and Description |
|---|
BLACK_LIST
For IP prefixes in blacklist.
|
PRIVATE
Private IP prefixes should be used only locally and not exchanged
by eBGP.
|
PUBLIC
Public IP prefixes should be exchanged by eBGP.
|
| Modifier and Type | Method and Description |
|---|---|
static LocalIpPrefixEntry.IpPrefixType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalIpPrefixEntry.IpPrefixType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalIpPrefixEntry.IpPrefixType PUBLIC
public static final LocalIpPrefixEntry.IpPrefixType PRIVATE
public static final LocalIpPrefixEntry.IpPrefixType BLACK_LIST
public static LocalIpPrefixEntry.IpPrefixType[] values()
for (LocalIpPrefixEntry.IpPrefixType c : LocalIpPrefixEntry.IpPrefixType.values()) System.out.println(c);
public static LocalIpPrefixEntry.IpPrefixType 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