public static enum LQLBuilder.AdditiveOp extends java.lang.Enum<LQLBuilder.AdditiveOp>
Modifier and Type | Method and Description |
---|---|
static LQLBuilder.AdditiveOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LQLBuilder.AdditiveOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LQLBuilder.AdditiveOp ADD
public static final LQLBuilder.AdditiveOp SUB
public static LQLBuilder.AdditiveOp[] values()
for (LQLBuilder.AdditiveOp c : LQLBuilder.AdditiveOp.values()) System.out.println(c);
public static LQLBuilder.AdditiveOp 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.