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

org.geotoolkit.internal.referencing.factory.ImplementationHints Maven / Gradle / Ivy

Go to download

Implementations of Coordinate Reference Systems (CRS), conversion and transformation services derived from ISO 19111.

There is a newer version: 3.20-geoapi-3.0
Show newest version
/*
 *    Geotoolkit.org - An Open Source Java GIS Toolkit
 *    http://www.geotoolkit.org
 *
 *    (C) 2010-2011, Open Source Geospatial Foundation (OSGeo)
 *    (C) 2010-2011, Geomatys
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation;
 *    version 2.1 of the License.
 *
 *    This library is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *    Lesser General Public License for more details.
 */
package org.geotoolkit.internal.referencing.factory;

import java.lang.annotation.Target;
import java.lang.annotation.Inherited;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;


/**
 * Annotation for factories having hard-coded hints. Inspecting the annotation on a class
 * is much cheaper than asking for the implementation hints on an instance of that class,
 * especially when the instance requires a connection to a database (e.g. the EPSG factories).
 *
 * @todo Maybe we should provide a generalized form of this annotation in a public package.
 *       An alternative would be to use reflection for inspecting some static flavor of
 *       getImplementationHints().
 *
 * @author Martin Desruisseaux (Geomatys)
 * @version 3.16
 *
 * @since 3.16
 * @module
 */
@Inherited
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface ImplementationHints {
    /**
     * The value of {@link org.geotoolkit.factory.Hints#FORCE_LONGITUDE_FIRST_AXIS_ORDER},
     * which can not be null.
     *
     * @return Whatever the annotated factory forces longitude to be before latitude.
     */
    boolean forceLongitudeFirst();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy