public static enum AsPath.AsType extends Enum<AsPath.AsType>
| Enum Constant and Description |
|---|
AS_CONFED_SEQUENCE |
AS_CONFED_SET |
AS_SEQUENCE |
AS_SET |
| Modifier and Type | Method and Description |
|---|---|
byte |
type()
Returns value of AS type.
|
static AsPath.AsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsPath.AsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsPath.AsType AS_SET
public static final AsPath.AsType AS_SEQUENCE
public static final AsPath.AsType AS_CONFED_SEQUENCE
public static final AsPath.AsType AS_CONFED_SET
public static AsPath.AsType[] values()
for (AsPath.AsType c : AsPath.AsType.values()) System.out.println(c);
public static AsPath.AsType 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 nullpublic byte type()