public static enum SqlOperandTypeChecker.Consistency extends Enum<SqlOperandTypeChecker.Consistency>
| Enum Constant and Description |
|---|
COMPARE
Make arguments of consistent type using comparison semantics.
|
LEAST_RESTRICTIVE
Convert all arguments to the least restrictive type.
|
NONE
Do not try to make arguments consistent.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlOperandTypeChecker.Consistency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlOperandTypeChecker.Consistency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlOperandTypeChecker.Consistency NONE
public static final SqlOperandTypeChecker.Consistency COMPARE
public static final SqlOperandTypeChecker.Consistency LEAST_RESTRICTIVE
public static SqlOperandTypeChecker.Consistency[] values()
for (SqlOperandTypeChecker.Consistency c : SqlOperandTypeChecker.Consistency.values()) System.out.println(c);
public static SqlOperandTypeChecker.Consistency 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 © 2012–2015 The Apache Software Foundation. All rights reserved.