public static enum Statement.JoinOperator extends Enum<Statement.JoinOperator>
Modifier and Type | Method and Description |
---|---|
static Statement.JoinOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statement.JoinOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statement.JoinOperator AND
public static final Statement.JoinOperator OR
public static final Statement.JoinOperator AND_NOT
public static final Statement.JoinOperator OR_NOT
public static Statement.JoinOperator[] values()
for (Statement.JoinOperator c : Statement.JoinOperator.values()) System.out.println(c);
public static Statement.JoinOperator 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 © 1982–2022 Adobe Systems Inc.. All rights reserved.