public abstract class CustomWrapperExpression extends Object
CustomWrapperCondition| Modifier and Type | Field and Description |
|---|---|
protected static int |
ARRAY_TYPE |
protected static int |
CONDITION_TYPE |
protected static int |
CONTAINS_TYPE |
protected static int |
FIELD_TYPE |
protected static int |
FUNCTION_TYPE |
protected static int |
REGISTER_TYPE |
protected static int |
SIMPLE_TYPE |
| Modifier | Constructor and Description |
|---|---|
protected |
CustomWrapperExpression() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
protected abstract int |
getExpressionType() |
int |
hashCode() |
boolean |
isArrayExpression() |
boolean |
isConditionExpression() |
boolean |
isContainsExpression()
Deprecated.
The operator
contains has been removed from the Denodo Platform.
We suggest you remove all the references to this method from the code of your custom
wrappers. This method still exists to allow you to load your existing extensions
without modifying them. However, the execution engine will not execute this operator. |
boolean |
isFieldExpression() |
boolean |
isFunctionExpression() |
boolean |
isRegisterExpression() |
boolean |
isSimpleExpression() |
abstract String |
toString() |
protected static final int SIMPLE_TYPE
protected static final int FIELD_TYPE
protected static final int FUNCTION_TYPE
protected static final int CONDITION_TYPE
protected static final int ARRAY_TYPE
protected static final int CONTAINS_TYPE
protected static final int REGISTER_TYPE
protected abstract int getExpressionType()
public boolean isSimpleExpression()
true if this expression is a simple expression,
false otherwise.public boolean isFieldExpression()
true if this expression is a field expression,
false otherwise.public boolean isFunctionExpression()
true if this expression is a function expression,
false otherwise.public boolean isConditionExpression()
true if this expression is a condition expression,
false otherwise.public boolean isArrayExpression()
true if this expression is an array expression,
false otherwise.@Deprecated public boolean isContainsExpression()
contains has been removed from the Denodo Platform.
We suggest you remove all the references to this method from the code of your custom
wrappers. This method still exists to allow you to load your existing extensions
without modifying them. However, the execution engine will not execute this operator.true if this expression is a expression using the operator 'contains',
false otherwise.public boolean isRegisterExpression()
true if this expression is a register expression,
false otherwise.Copyright © 2024 Denodo Technologies. All rights reserved.