public enum FunctionOperator extends Enum<FunctionOperator>
Java class for Function.Operator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Function.Operator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="IN"/>
<enumeration value="IDENTITY"/>
<enumeration value="EQUALS"/>
<enumeration value="AND"/>
<enumeration value="CONTAINS_ANY"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AND
Operator that takes two or more operands that are of type FunctionOperand
and checks that all the operands evaluate to true.
|
CONTAINS_ANY
Operator that returns true if the elements in lhsOperand contains any of the elements
in rhsOperands.
|
EQUALS
The EQUALS operator
|
IDENTITY
The IDENTITY operator.
|
IN
The IN operator.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static FunctionOperator |
fromValue(String v) |
String |
value() |
static FunctionOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionOperator IN
public static final FunctionOperator IDENTITY
public static final FunctionOperator EQUALS
public static final FunctionOperator AND
public static final FunctionOperator CONTAINS_ANY
public static final FunctionOperator UNKNOWN
public static FunctionOperator[] values()
for (FunctionOperator c : FunctionOperator.values()) System.out.println(c);
public static FunctionOperator 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 value()
public static FunctionOperator fromValue(String v)
Copyright © 2023. All rights reserved.