|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FilterExpression.ExpressionSyntax>
jnetpcap.filter.FilterExpression.ExpressionSyntax
public static enum FilterExpression.ExpressionSyntax
Available syntaxes for filter expression. The ExpressionSyntax is used to determine which type of expression compiler to invoke inorder to compile the expression down to BPF binary byte-code program.
Enum Constant Summary | |
---|---|
Etherpeek
Etherpeek's filtering syntax |
|
Npl
jNetStream's NPL syntax |
|
Pcap
Lib PCAP filter expression syntax |
|
Snort
Snort's filter syntax |
Method Summary | |
---|---|
static FilterExpression.ExpressionSyntax |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FilterExpression.ExpressionSyntax[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FilterExpression.ExpressionSyntax Pcap
public static final FilterExpression.ExpressionSyntax Npl
public static final FilterExpression.ExpressionSyntax Snort
public static final FilterExpression.ExpressionSyntax Etherpeek
Method Detail |
---|
public static final FilterExpression.ExpressionSyntax[] values()
for(FilterExpression.ExpressionSyntax c : FilterExpression.ExpressionSyntax.values()) System.out.println(c);
public static FilterExpression.ExpressionSyntax 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 name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |