public static enum ConditionAnalyzer.BooleanOperator extends Enum<ConditionAnalyzer.BooleanOperator>
Enum Constant and Description |
---|
CONTAINS |
EQ |
GE |
GT |
INSTANCEOF |
LE |
LT |
MATCHES |
NE |
SOUNDSLIKE |
Modifier and Type | Method and Description |
---|---|
boolean |
allowNullOnRight() |
static ConditionAnalyzer.BooleanOperator |
fromMvelOpCode(int opCode) |
boolean |
isComparison() |
boolean |
isEquality() |
boolean |
needsSameType() |
String |
toString() |
static ConditionAnalyzer.BooleanOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionAnalyzer.BooleanOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionAnalyzer.BooleanOperator EQ
public static final ConditionAnalyzer.BooleanOperator NE
public static final ConditionAnalyzer.BooleanOperator GT
public static final ConditionAnalyzer.BooleanOperator GE
public static final ConditionAnalyzer.BooleanOperator LT
public static final ConditionAnalyzer.BooleanOperator LE
public static final ConditionAnalyzer.BooleanOperator MATCHES
public static final ConditionAnalyzer.BooleanOperator CONTAINS
public static final ConditionAnalyzer.BooleanOperator SOUNDSLIKE
public static final ConditionAnalyzer.BooleanOperator INSTANCEOF
public static ConditionAnalyzer.BooleanOperator[] values()
for (ConditionAnalyzer.BooleanOperator c : ConditionAnalyzer.BooleanOperator.values()) System.out.println(c);
public static ConditionAnalyzer.BooleanOperator 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<ConditionAnalyzer.BooleanOperator>
public boolean isEquality()
public boolean needsSameType()
public boolean allowNullOnRight()
public boolean isComparison()
public static ConditionAnalyzer.BooleanOperator fromMvelOpCode(int opCode)
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.