All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.spatial.SpatialAnalysis Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.spatial;

/**
 * The spatial analysis functions defined in the OGC SFS specification.
 *
 * @author Karel Maesen
 * @deprecated Will be removed in 6
 */
@Deprecated
public interface SpatialAnalysis {

	/**
	 * The distance function
	 */
	public static int DISTANCE = 1;

	/**
	 * The buffer function
	 */
	public static int BUFFER = 2;

	/**
	 * The convexhull function
	 */
	public static int CONVEXHULL = 3;

	/**
	 * The intersection function
	 */
	public static int INTERSECTION = 4;

	/**
	 * The union function
	 */
	public static int UNION = 5;

	/**
	 * The difference function
	 */
	public static int DIFFERENCE = 6;

	/**
	 * The symmetric difference function
	 */
	public static int SYMDIFFERENCE = 7;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy