public static enum BgpCfg.State extends Enum<BgpCfg.State>
| Enum Constant and Description |
|---|
AS_CONFIGURED
Signifies that only Autonomous System is configured.
|
INIT
Signifies that its just created.
|
IP_AS_CONFIGURED
Signifies that both IP and Autonomous System is configured.
|
IP_CONFIGURED
Signifies that only IP Address is configured.
|
| Modifier and Type | Method and Description |
|---|---|
static BgpCfg.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BgpCfg.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BgpCfg.State INIT
public static final BgpCfg.State IP_CONFIGURED
public static final BgpCfg.State AS_CONFIGURED
public static final BgpCfg.State IP_AS_CONFIGURED
public static BgpCfg.State[] values()
for (BgpCfg.State c : BgpCfg.State.values()) System.out.println(c);
public static BgpCfg.State 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