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