public enum OspfLinkType extends Enum<OspfLinkType>
| Enum Constant and Description |
|---|
POINT_TO_POINT
Indicates a point-to-point connection to another router.
|
TO_STUB_NET
Indicates a connection to a stub network.
|
TO_TRANSIT_NET
Indicates a connection to a transit network.
|
VIRTUAL_LINK
Indicates a Virtual link to another area border router.
|
| Modifier and Type | Method and Description |
|---|---|
static OspfLinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OspfLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OspfLinkType POINT_TO_POINT
public static final OspfLinkType TO_TRANSIT_NET
public static final OspfLinkType TO_STUB_NET
public static final OspfLinkType VIRTUAL_LINK
public static OspfLinkType[] values()
for (OspfLinkType c : OspfLinkType.values()) System.out.println(c);
public static OspfLinkType 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 nullCopyright © 2016. All rights reserved.