Enum Constant and Description |
---|
EQUALS |
GREATER |
GREATER_EQ |
LESS |
LESS_EQ |
NOT_EQUALS |
NOT_NULL |
NULL |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static FilterOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOp NULL
public static final FilterOp NOT_NULL
public static final FilterOp EQUALS
public static final FilterOp NOT_EQUALS
public static final FilterOp LESS
public static final FilterOp LESS_EQ
public static final FilterOp GREATER
public static final FilterOp GREATER_EQ
public static FilterOp[] values()
for (FilterOp c : FilterOp.values()) System.out.println(c);
public static FilterOp 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 java.lang.String toString()
toString
in class java.lang.Enum<FilterOp>
Copyright © 2013. All Rights Reserved.