public enum WurbletParameterOperator extends Enum<WurbletParameterOperator>
WurbletParameterExpression.| Enum Constant and Description |
|---|
AND
logical AND.
|
ANDNOT |
NOT
logical NOT at start of expression before another expression.
|
OR
logical OR.
|
ORNOT |
| Modifier and Type | Method and Description |
|---|---|
String |
getSql()
Gets the Backend.SQL_...
|
String |
getText()
Gets the sql text.
|
static WurbletParameterOperator |
toInternal(String str)
Determines the operator from a string.
Case doesn't matter. |
String |
toString() |
static WurbletParameterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WurbletParameterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WurbletParameterOperator AND
public static final WurbletParameterOperator OR
public static final WurbletParameterOperator NOT
public static final WurbletParameterOperator ANDNOT
public static final WurbletParameterOperator ORNOT
public static WurbletParameterOperator[] values()
for (WurbletParameterOperator c : WurbletParameterOperator.values()) System.out.println(c);
public static WurbletParameterOperator 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 getText()
public String getSql()
public String toString()
toString in class Enum<WurbletParameterOperator>public static WurbletParameterOperator toInternal(String str)
str - the stringCopyright © 2016 Krake Softwaretechnik. All rights reserved.