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

com.marklogic.client.pojo.annotation.GeospatialLatitude Maven / Gradle / Ivy

/*
 * Copyright 2012-2016 MarkLogic Corporation
 *
 * 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.marklogic.client.pojo.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/** Use this annotation in combination with {@link GeospatialLongitude} on a
 * sibling property to specify that a Geospatial Element Pair Index is needed
 * for these pojo properties. The value should follow the rules
 * for any Geospatial Element Pair Index in MarkLogic Server with coordinate
 * system "wgs84".
 *
 * This annotation can be associated with a public field:
 * 
    import com.marklogic.client.pojo.annotation.GeospatialLatitude;
 *    import com.marklogic.client.pojo.annotation.GeospatialLongitude;
 *    public class MyClass {
 *      {@literal @}GeospatialLatitude
 *      public String latitude;
 *      {@literal @}GeospatialLongitude
 *      public String longitude;
 *    }
* * or with a public getter method: *
 *    public class MyClass {
 *      private String latitude;
 *      private String longitude;
 *      {@literal @}GeospatialLatitude
 *      public String getLatitude() {
 *        return latitude;
 *      }
 *      {@literal @}GeospatialLongitude
 *      public String getLongitude() {
 *        return longitude;
 *      }
 *      // ... setter methods ...
 *    }
* * or with a public setter method: *
 *    public class MyClass {
 *      private String latitude;
 *      private String longitude;
 *
 *      // ... getter methods ...
 *
 *      {@literal @}GeospatialLatitude
 *      public void setLatitude(String latitude) {
 *        this.latitude = latitude;
 *      }
 *      {@literal @}GeospatialLongitude
 *      public void setLongitude(String longitude) {
 *        this.longitude = longitude;
 *      }
 *    }
* Run * {@link com.marklogic.client.pojo.util.GenerateIndexConfig} to generate * a package that can be used by administrators to create the indexes in * MarkLogic Server. */ @Retention(RetentionPolicy.RUNTIME) public @interface GeospatialLatitude { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy