@Beta public enum PiMatchType extends java.lang.Enum<PiMatchType>
| Enum Constant and Description |
|---|
EXACT
Exact match type.
|
LPM
Longest-prefix match type.
|
RANGE
Range match type.
|
TERNARY
Ternary match type.
|
VALID
Valid match type.
|
| Modifier and Type | Method and Description |
|---|---|
static PiMatchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PiMatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PiMatchType EXACT
public static final PiMatchType TERNARY
public static final PiMatchType LPM
public static final PiMatchType VALID
public static final PiMatchType RANGE
public static PiMatchType[] values()
for (PiMatchType c : PiMatchType.values()) System.out.println(c);
public static PiMatchType 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 null