Uses of Class
com.denodo.vdb.engine.customwrapper.condition.CustomWrapperCondition
Packages that use CustomWrapperCondition
Package
Description
Provides the classes needed to deal with conditions of Custom Wrappers.
Provides the classes needed to deal with expressions of Custom Wrappers.
-
Uses of CustomWrapperCondition in com.denodo.vdb.engine.customwrapper.condition
Subclasses of CustomWrapperCondition in com.denodo.vdb.engine.customwrapper.conditionModifier and TypeClassDescriptionfinal class
Defines an AND condition in terms of a list of conditions: CONDITION_1 AND CONDITION_2 AND ...final class
Defines a NOT condition in terms of an encapsulated condition: NOT MY_CONDITIONfinal class
Defines an OR condition in terms of a list of conditions: CONDITION_1 OR CONDITION_2 OR ...final class
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).Methods in com.denodo.vdb.engine.customwrapper.condition that return CustomWrapperConditionModifier and TypeMethodDescriptionCustomWrapperConditionHolder.getComplexCondition()
CustomWrapperNotCondition.getCondition()
Methods in com.denodo.vdb.engine.customwrapper.condition that return types with arguments of type CustomWrapperConditionModifier and TypeMethodDescriptionCustomWrapperAndCondition.getConditions()
CustomWrapperOrCondition.getConditions()
Methods in com.denodo.vdb.engine.customwrapper.condition with parameters of type CustomWrapperConditionModifier and TypeMethodDescriptionvoid
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.Constructors in com.denodo.vdb.engine.customwrapper.condition with parameters of type CustomWrapperConditionModifierConstructorDescriptionCustomWrapperConditionHolder
(CustomWrapperCondition complexCondition) Creates an instance ofCustomWrapperConditionHolder
encapsulating a condition and generates itsMap<CustomWrapperFieldExpression, Object>
version.CustomWrapperNotCondition
(CustomWrapperCondition condition) Creates a new NOT condition.Constructor parameters in com.denodo.vdb.engine.customwrapper.condition with type arguments of type CustomWrapperConditionModifierConstructorDescriptionCustomWrapperAndCondition
(List<CustomWrapperCondition> conditions) Creates a new AND condition.CustomWrapperOrCondition
(LinkedList<CustomWrapperCondition> conditionsList) Creates a new OR condition. -
Uses of CustomWrapperCondition in com.denodo.vdb.engine.customwrapper.expression
Methods in com.denodo.vdb.engine.customwrapper.expression that return CustomWrapperConditionConstructors in com.denodo.vdb.engine.customwrapper.expression with parameters of type CustomWrapperConditionModifierConstructorDescriptionCreates a condition expression with an encapsulatedCustomWrapperCondition
.