public enum OspfLsaType extends java.lang.Enum<OspfLsaType>
| Enum Constant and Description |
|---|
AREA_LOCAL_OPAQUE_LSA |
AS_OPAQUE_LSA |
ASBR_SUMMARY |
EXTERNAL_LSA |
LINK_LOCAL_OPAQUE_LSA |
NETWORK |
ROUTER |
SUMMARY |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
int |
value()
Gets the value representing LSA type.
|
static OspfLsaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OspfLsaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OspfLsaType ROUTER
public static final OspfLsaType NETWORK
public static final OspfLsaType SUMMARY
public static final OspfLsaType ASBR_SUMMARY
public static final OspfLsaType EXTERNAL_LSA
public static final OspfLsaType LINK_LOCAL_OPAQUE_LSA
public static final OspfLsaType AREA_LOCAL_OPAQUE_LSA
public static final OspfLsaType AS_OPAQUE_LSA
public static final OspfLsaType UNDEFINED
public static OspfLsaType[] values()
for (OspfLsaType c : OspfLsaType.values()) System.out.println(c);
public static OspfLsaType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int value()