• Creates a boolean AND condition. It represents a boolean AND evaluation of two or more conditions.

    Note that combining Identifier expressions with other expressions will result in an error.

      FilterFactory.and(
    FilterFactory.gt(
    FilterFactory.property("TOT_POP"),
    FilterFactory.literal(100000)
    ),
    FilterFactory.lt(
    FilterFactory.property("TOT_POP"),
    FilterFactory.literal(500000)
    )
    );

    Parameters

    Returns OGCCondition

    The And Logical Operator.

    Error if not all parameters are OGCCondition