public static enum Statement.Op extends Enum<Statement.Op>
| Modifier and Type | Method and Description |
|---|---|
MinMax |
apply(MinMax minMax1,
MinMax minMax2) |
String |
build(String value) |
String |
getName() |
static Statement.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statement.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statement.Op MULTIPLY
public static final Statement.Op LIMIT
public static Statement.Op[] values()
for (Statement.Op c : Statement.Op.values()) System.out.println(c);
public static Statement.Op 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 String getName()
Copyright © 2012–2023. All rights reserved.