public static enum EvpnRoute.Source extends Enum<EvpnRoute.Source>
| Enum Constant and Description |
|---|
LOCAL
Route came from app source.
|
REMOTE
Route came from remote bgp peer source.
|
| Modifier and Type | Method and Description |
|---|---|
static EvpnRoute.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvpnRoute.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvpnRoute.Source LOCAL
public static final EvpnRoute.Source REMOTE
public static EvpnRoute.Source[] values()
for (EvpnRoute.Source c : EvpnRoute.Source.values()) System.out.println(c);
public static EvpnRoute.Source 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