Class LogicalOperationFactory
- java.lang.Object
-
- org.citydb.query.filter.selection.operator.logical.LogicalOperationFactory
-
public class LogicalOperationFactory extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description LogicalOperationFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BinaryLogicalOperator
AND(java.util.List<Predicate> operands)
static BinaryLogicalOperator
AND(Predicate... operands)
static NotOperator
NOT(Predicate operand)
static BinaryLogicalOperator
OR(java.util.List<Predicate> operands)
static BinaryLogicalOperator
OR(Predicate... operands)
-
-
-
Method Detail
-
AND
public static BinaryLogicalOperator AND(java.util.List<Predicate> operands) throws FilterException
- Throws:
FilterException
-
AND
public static BinaryLogicalOperator AND(Predicate... operands) throws FilterException
- Throws:
FilterException
-
OR
public static BinaryLogicalOperator OR(java.util.List<Predicate> operands) throws FilterException
- Throws:
FilterException
-
OR
public static BinaryLogicalOperator OR(Predicate... operands) throws FilterException
- Throws:
FilterException
-
NOT
public static NotOperator NOT(Predicate operand)
-
-