public static enum Criterion.IPv6ExthdrFlags extends java.lang.Enum<Criterion.IPv6ExthdrFlags>
Enum Constant and Description |
---|
AUTH
Authentication header present.
|
DEST
1 or 2 dest headers present.
|
ESP
Encrypted Sec Payload header present.
|
FRAG
Fragment header present.
|
HOP
Hop-by-hop header present.
|
NONEXT
"No next header" encountered.
|
ROUTER
Router header present.
|
UNREP
Unexpected repeats encountered.
|
UNSEQ
Unexpected sequencing encountered.
|
Modifier and Type | Method and Description |
---|---|
short |
getValue()
Gets the value as an integer.
|
static Criterion.IPv6ExthdrFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Criterion.IPv6ExthdrFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Criterion.IPv6ExthdrFlags NONEXT
public static final Criterion.IPv6ExthdrFlags ESP
public static final Criterion.IPv6ExthdrFlags AUTH
public static final Criterion.IPv6ExthdrFlags DEST
public static final Criterion.IPv6ExthdrFlags FRAG
public static final Criterion.IPv6ExthdrFlags ROUTER
public static final Criterion.IPv6ExthdrFlags HOP
public static final Criterion.IPv6ExthdrFlags UNREP
public static final Criterion.IPv6ExthdrFlags UNSEQ
public static Criterion.IPv6ExthdrFlags[] values()
for (Criterion.IPv6ExthdrFlags c : Criterion.IPv6ExthdrFlags.values()) System.out.println(c);
public static Criterion.IPv6ExthdrFlags 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 short getValue()