public static enum BgpCfg.FlowSpec extends Enum<BgpCfg.FlowSpec>
| Enum Constant and Description |
|---|
IPV4
Signifies that peer support IPV4 flow specification.
|
IPV4_VPNV4
Signifies that peer support IPV4 and VPNV4 flow specification.
|
NONE
Signifies that peer flow specification capability disabled.
|
VPNV4
Signifies that peer support VPNV4 flow specification.
|
| Modifier and Type | Method and Description |
|---|---|
static BgpCfg.FlowSpec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BgpCfg.FlowSpec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BgpCfg.FlowSpec IPV4
public static final BgpCfg.FlowSpec VPNV4
public static final BgpCfg.FlowSpec IPV4_VPNV4
public static final BgpCfg.FlowSpec NONE
public static BgpCfg.FlowSpec[] values()
for (BgpCfg.FlowSpec c : BgpCfg.FlowSpec.values()) System.out.println(c);
public static BgpCfg.FlowSpec 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