public static enum QBExpr.Opcode extends Enum<QBExpr.Opcode>
Modifier and Type | Method and Description |
---|---|
static QBExpr.Opcode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QBExpr.Opcode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QBExpr.Opcode NULLOP
public static final QBExpr.Opcode UNION
public static final QBExpr.Opcode INTERSECT
public static final QBExpr.Opcode DIFF
public static QBExpr.Opcode[] values()
for (QBExpr.Opcode c : QBExpr.Opcode.values()) System.out.println(c);
public static QBExpr.Opcode 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 © 2017 The Apache Software Foundation. All rights reserved.