Enum IsNullPredicate.IsNullPredicateOperator
- java.lang.Object
-
- java.lang.Enum<IsNullPredicate.IsNullPredicateOperator>
-
- com.exasol.sql.expression.predicate.IsNullPredicate.IsNullPredicateOperator
-
- All Implemented Interfaces:
PredicateOperator,Serializable,Comparable<IsNullPredicate.IsNullPredicateOperator>
- Enclosing class:
- IsNullPredicate
public static enum IsNullPredicate.IsNullPredicateOperator extends Enum<IsNullPredicate.IsNullPredicateOperator> implements PredicateOperator
An operator forIsNullPredicateclass.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IS_NOT_NULLIs-not-null operatorIS_NULLIs-null operator
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()Returns the predicate operator symbol.static IsNullPredicate.IsNullPredicateOperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static IsNullPredicate.IsNullPredicateOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_NULL
public static final IsNullPredicate.IsNullPredicateOperator IS_NULL
Is-null operator
-
IS_NOT_NULL
public static final IsNullPredicate.IsNullPredicateOperator IS_NOT_NULL
Is-not-null operator
-
-
Method Detail
-
values
public static IsNullPredicate.IsNullPredicateOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IsNullPredicate.IsNullPredicateOperator c : IsNullPredicate.IsNullPredicateOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IsNullPredicate.IsNullPredicateOperator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
Description copied from interface:PredicateOperatorReturns the predicate operator symbol.- Specified by:
toStringin interfacePredicateOperator- Overrides:
toStringin classEnum<IsNullPredicate.IsNullPredicateOperator>- Returns:
- predicate operator symbol
-
-