public enum UnaryConditionalOperator extends Enum<UnaryConditionalOperator>
UnaryOperatorExpression
Enum Constant and Description |
---|
EXISTS |
EXISTS_NOT |
ISEMPTY |
ISEMPTY_NOT |
ISNULL |
ISNULL_NOT |
SOME |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static UnaryConditionalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnaryConditionalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryConditionalOperator EXISTS
public static final UnaryConditionalOperator EXISTS_NOT
public static final UnaryConditionalOperator ISEMPTY
public static final UnaryConditionalOperator ISEMPTY_NOT
public static final UnaryConditionalOperator ISNULL
public static final UnaryConditionalOperator ISNULL_NOT
public static final UnaryConditionalOperator SOME
public static UnaryConditionalOperator[] values()
for (UnaryConditionalOperator c : UnaryConditionalOperator.values()) System.out.println(c);
public static UnaryConditionalOperator 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 toString()
toString
in class Enum<UnaryConditionalOperator>
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.