public enum FilterOp extends Enum<FilterOp>
Enum Constant and Description |
---|
EQUALS |
GREATER |
GREATER_EQ |
LESS |
LESS_EQ |
NOT_EQUALS |
NOT_NULL |
NULL |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static FilterOp |
valueOf(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(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 nullCopyright © 2007–2018 Ubiquitous Knowledge Processing (UKP) Lab, Technische Universität Darmstadt. All rights reserved.