public enum UnaryConditionalOperator extends java.lang.Enum<UnaryConditionalOperator>
UnaryOperatorExpression| Enum Constant and Description |
|---|
EXISTS |
EXISTS_NOT |
ISEMPTY |
ISEMPTY_NOT |
ISNULL |
ISNULL_NOT |
SOME |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static UnaryConditionalOperator |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<UnaryConditionalOperator>Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.