| Package | Description |
|---|---|
| com.denodo.vdb.engine.customwrapper.condition |
Provides the classes needed to deal with conditions of Custom Wrappers.
|
| com.denodo.vdb.engine.customwrapper.expression |
Provides the classes needed to deal with expressions of Custom Wrappers.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CustomWrapperAndCondition
Defines an AND condition in terms of a list of conditions:
CONDITION_1 AND CONDITION_2 AND ...
|
class |
CustomWrapperNotCondition
Defines a NOT condition in terms of an encapsulated condition:
NOT MY_CONDITION
|
class |
CustomWrapperOrCondition
Defines an OR condition in terms of a list of conditions:
CONDITION_1 OR CONDITION_2 OR ...
|
class |
CustomWrapperSimpleCondition
Defines a simple condition in terms of an expression (the left side of the
condition, usually a field's name), an operator and a list of expressions
(the right side of the condition).
|
| Modifier and Type | Method and Description |
|---|---|
CustomWrapperCondition |
CustomWrapperConditionHolder.getComplexCondition() |
CustomWrapperCondition |
CustomWrapperNotCondition.getCondition() |
| Modifier and Type | Method and Description |
|---|---|
List<CustomWrapperCondition> |
CustomWrapperAndCondition.getConditions() |
List<CustomWrapperCondition> |
CustomWrapperOrCondition.getConditions() |
| Modifier and Type | Method and Description |
|---|---|
void |
CustomWrapperAndCondition.addCondition(CustomWrapperCondition condition)
Adds a condition to the AND condition.
|
void |
CustomWrapperOrCondition.addCondition(CustomWrapperCondition condition)
Adds a condition to the OR condition.
|
void |
CustomWrapperNotCondition.setCondition(CustomWrapperCondition condition)
Users do not need to use this method.
|
| Constructor and Description |
|---|
CustomWrapperConditionHolder(CustomWrapperCondition complexCondition)
Creates an instance of
CustomWrapperConditionHolder encapsulating
a condition and generates its Map<CustomWrapperFieldExpression, Object>
version. |
CustomWrapperNotCondition(CustomWrapperCondition condition)
Creates a new NOT condition.
|
| Constructor and Description |
|---|
CustomWrapperAndCondition(List<CustomWrapperCondition> conditions)
Creates a new AND condition.
|
CustomWrapperOrCondition(LinkedList<CustomWrapperCondition> conditionsList)
Creates a new OR condition.
|
| Modifier and Type | Method and Description |
|---|---|
CustomWrapperCondition |
CustomWrapperConditionExpression.getCondition() |
| Constructor and Description |
|---|
CustomWrapperConditionExpression(CustomWrapperCondition condition)
Creates a condition expression with an encapsulated
CustomWrapperCondition. |
Copyright © 2024 Denodo Technologies. All rights reserved.