Package org.opengis.filter.expression

Examples of org.opengis.filter.expression.PropertyName


     * </p>
     */
    public BBOX bbox(String propertyName, double minx, double miny,
            double maxx, double maxy, String srs) {
       
        PropertyName name = property(propertyName);
        return bbox(name, minx, miny, maxx, maxy, srs);
    }
View Full Code Here


      }
               
    }
   
    private BBOXImpl bbox2d (Expression e, BoundingBox bounds, MatchAction matchAction) {            
      PropertyName name = null;
        if ( e instanceof PropertyName ) {
            name = (PropertyName) e;
        }
        else {
            throw new IllegalArgumentException("BBOX requires PropertyName expression");
View Full Code Here

        return new BBOXImpl(name,bbox, matchAction);
    }
   
    public BBOX bbox(String propertyName, double minx, double miny, double maxx, double maxy,
            String srs, MatchAction matchAction) {
        PropertyName name = property(propertyName);
        return bbox(name, minx, miny, maxx, maxy, srs, matchAction);
    }
View Full Code Here

    public BBOX3D bbox(Expression geometry, BoundingBox3D env) {
        return bbox(geometry, env, MatchAction.ANY);
    }
          
    public BBOX3D bbox(Expression e, BoundingBox3D env, MatchAction matchAction) {
      PropertyName name = null;
        if ( e instanceof PropertyName ) {
            name = (PropertyName) e;
        }
        else {
            throw new IllegalArgumentException();
View Full Code Here

    }
   
    public Beyond beyond(String propertyName, Geometry geometry,
            double distance, String units) {
       
        PropertyName name = property(propertyName);
        Literal geom = literal(geometry);
         
        return beyond( name, geom, distance, units );
    }
View Full Code Here

        return beyond( name, geom, distance, units );
    }

    public Beyond beyond(String propertyName, Geometry geometry, double distance, String units,
                MatchAction matchAction) {
        PropertyName name = property(propertyName);
        Literal geom = literal(geometry);
         
        return beyond( name, geom, distance, units, matchAction );
    }
View Full Code Here

       
        return beyond;
    }
   
    public Contains contains(String propertyName, Geometry geometry) {
        PropertyName name = property(propertyName);
        Literal geom = literal(geometry);
       
        return contains( name, geom );
    }
View Full Code Here

    public Contains contains(Expression geometry1, Expression geometry2, MatchAction matchAction) {
        return new ContainsImpl(geometry1, geometry2, matchAction );
    }
   
    public Contains contains(String propertyName, Geometry geometry, MatchAction matchAction) {
        PropertyName name = property(propertyName);
        Literal geom = literal(geometry);
       
        return contains( name, geom, matchAction );
    }
View Full Code Here

       
        return contains( name, geom, matchAction );
    }

    public Crosses crosses(String propertyName, Geometry geometry) {
        PropertyName name = property(propertyName);
        Literal geom = literal(geometry);
       
        return crosses( name, geom );
    }
View Full Code Here

       
        return crosses( name, geom );
    }
   
    public Crosses crosses(String propertyName, Geometry geometry, MatchAction matchAction) {
        PropertyName name = property(propertyName);
        Literal geom = literal(geometry);
       
        return crosses( name, geom, matchAction );
    }
View Full Code Here

TOP

Related Classes of org.opengis.filter.expression.PropertyName

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.