Search in sources :

Example 1 with TimeAnyInteractsType

use of org.geotoolkit.ogc.xml.v110.TimeAnyInteractsType in project geotoolkit by Geomatys.

the class FilterFactoryImpl method anyInteracts.

@Override
public TemporalOperator<Object> anyInteracts(final Expression<Object, ?> expr1, final Expression<Object, ?> expr2) {
    Object temporal = null;
    PropertyNameType propName = null;
    if (expr1 instanceof PropertyNameType) {
        propName = (PropertyNameType) expr1;
        temporal = expr2;
    } else if (expr2 instanceof PropertyNameType) {
        propName = (PropertyNameType) expr2;
        temporal = expr1;
    }
    return new TimeAnyInteractsType(propName.getXPath(), temporal);
}
Also used : TimeAnyInteractsType(org.geotoolkit.ogc.xml.v110.TimeAnyInteractsType) PropertyNameType(org.geotoolkit.ogc.xml.v110.PropertyNameType)

Aggregations

PropertyNameType (org.geotoolkit.ogc.xml.v110.PropertyNameType)1 TimeAnyInteractsType (org.geotoolkit.ogc.xml.v110.TimeAnyInteractsType)1