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

org.mongodb.morphia.geo.CoordinateReferenceSystem Maven / Gradle / Ivy

The newest version!
package org.mongodb.morphia.geo;

/**
 * Defines the coordinate reference system to be used in certain geo queries.
 *
 * @mongodb.driver.manual reference/operator/query/geometry $geometry
 */
public abstract class CoordinateReferenceSystem {

    /**
     * Gets the type of this Coordinate Reference System.
     *
     * @return the type
     */
    public abstract CoordinateReferenceSystemType getType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy