public enum RelDataTypeComparability extends Enum<RelDataTypeComparability>
NOTE jvs 17-Mar-2005: the order of values of this enumeration is significant (from least inclusive to most inclusive) and should not be changed.
| Modifier and Type | Method and Description |
|---|---|
static RelDataTypeComparability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelDataTypeComparability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelDataTypeComparability NONE
public static final RelDataTypeComparability UNORDERED
public static final RelDataTypeComparability ALL
public static RelDataTypeComparability[] values()
for (RelDataTypeComparability c : RelDataTypeComparability.values()) System.out.println(c);
public static RelDataTypeComparability 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.