• Creates a division OGC expression. It takes two parameters, each one being an OGC expression.

    Note that arithmetic operators are no longer supported in OGC Filter 2.0. You will get an error when you use them in OGC Filter 2.0 XML (for example WFS 2.0). You can still create them, evaluate them and use them in OGC Filter 1.1 XML though.

      FilterFactory.div(
    FilterFactory.property("population"),
    FilterFactory.literal(1000)
    );

    Parameters

    Returns OGCCondition

    BinaryOperator

    Error if not all parameters are OGCExpression