public enum ExOpType
Operator types.
ORDER MATTERS! The parser tries these in order, so if a symbol is a prefix of another symbol, it must be later. E.g.: '=~' must be after '='.
When generating an expression, the first symbol for an op type is preferred.
| Modifier and Type | Class and Description |
|---|---|
static class |
ExOpType.Companion |
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_EQUAL |
LESS |
LESS_EQUAL |
NOT_EQUAL |
REGEX_MATCH |
| Modifier and Type | Field and Description |
|---|---|
static ExOpType.Companion |
Companion |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSymbol() |
java.lang.String[] |
getSymbols() |
public static ExOpType REGEX_MATCH
public static ExOpType GREATER_EQUAL
public static ExOpType LESS_EQUAL
public static ExOpType NOT_EQUAL
public static ExOpType EQUAL
public static ExOpType GREATER
public static ExOpType LESS
public static ExOpType.Companion Companion