com.mysema.query.spatial.MultiSurfaceExpression Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mysema.query.spatial;
import javax.annotation.Nullable;
import org.geolatte.geom.GeometryCollection;
import org.geolatte.geom.Point;
import com.mysema.query.types.Expression;
import com.mysema.query.types.expr.NumberExpression;
import com.mysema.query.types.expr.NumberOperation;
/**
* A MultiSurface is a 2-dimensional GeometryCollection whose elements are Surfaces, all using coordinates from
* the same coordinate reference system. The geometric interiors of any two Surfaces in a MultiSurface may not
* intersect in the full coordinate system. The boundaries of any two coplanar elements in a MultiSurface may
* intersect, at most, at a finite number of Points. If they were to meet along a curve, they could be merged into a
* single surface.
*
* @author tiwe
*
* @param
*/
public abstract class MultiSurfaceExpression extends GeometryCollectionExpression {
private static final long serialVersionUID = 4133386816772862010L;
@Nullable
private volatile PointExpression centroid, pointOnSurface;
@Nullable
private volatile NumberExpression area;
public MultiSurfaceExpression(Expression mixin) {
super(mixin);
}
/**
* The area of this MultiSurface, as measured in the spatial reference system of this MultiSurface.
*
* @return
*/
public NumberExpression area() {
if (area == null) {
area = NumberOperation.create(Double.class, SpatialOps.AREA, mixin);
}
return area;
}
/**
* The mathematical centroid for this MultiSurface. The result is not guaranteed to be on
* this MultiSurface.
*
* @return
*/
public PointExpression centroid() {
if (centroid == null) {
centroid = PointOperation.create(Point.class, SpatialOps.CENTROID, mixin);
}
return centroid;
}
/**
* A Point guaranteed to be on this MultiSurface.
*
* @return
*/
public PointExpression pointOnSurface() {
if (pointOnSurface == null) {
pointOnSurface = PointOperation.create(Point.class, SpatialOps.POINT_ON_SURFACE, mixin);
}
return pointOnSurface;
}
}