public static enum QueryUtils.BinaryOp extends Enum<QueryUtils.BinaryOp>
Modifier and Type | Method and Description |
---|---|
static QueryUtils.BinaryOp |
getBinaryOp(String value) |
static QueryUtils.BinaryOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryUtils.BinaryOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryUtils.BinaryOp Plus
public static final QueryUtils.BinaryOp Minus
public static final QueryUtils.BinaryOp Multiply
public static final QueryUtils.BinaryOp Divide
public static final QueryUtils.BinaryOp Mod
public static QueryUtils.BinaryOp[] values()
for (QueryUtils.BinaryOp c : QueryUtils.BinaryOp.values()) System.out.println(c);
public static QueryUtils.BinaryOp 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 nullpublic static QueryUtils.BinaryOp getBinaryOp(String value)
Copyright © 2016. All rights reserved.