public static enum LQLBuilder.CompareOp extends java.lang.Enum<LQLBuilder.CompareOp>
Modifier and Type | Method and Description |
---|---|
static LQLBuilder.CompareOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LQLBuilder.CompareOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LQLBuilder.CompareOp EQ
public static final LQLBuilder.CompareOp GT
public static final LQLBuilder.CompareOp GTEQ
public static final LQLBuilder.CompareOp LT
public static final LQLBuilder.CompareOp LTEQ
public static final LQLBuilder.CompareOp NEQ
public static LQLBuilder.CompareOp[] values()
for (LQLBuilder.CompareOp c : LQLBuilder.CompareOp.values()) System.out.println(c);
public static LQLBuilder.CompareOp 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 nullCopyright 2003, 2014, Oracle and/or its affiliates. All rights reserved.