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

org.geotoolkit.metadata.KeyNamePolicy Maven / Gradle / Ivy

Go to download

Implementations of metadata derived from ISO 19115. This module provides both an implementation of the metadata interfaces defined in GeoAPI, and a framework for handling those metadata through Java reflection.

The newest version!
/*
 *    Geotoolkit.org - An Open Source Java GIS Toolkit
 *    http://www.geotoolkit.org
 *
 *    (C) 2009-2012, Open Source Geospatial Foundation (OSGeo)
 *    (C) 2009-2012, 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.metadata;

import org.opengis.annotation.UML;


/**
 * The name of the keys included in a {@link java.util.Map} of metadata. Those maps are created
 * by the {@link AbstractMetadata#asMap()} method. The keys in those map are {@link String}s which
 * can be inferred from the {@linkplain UML#identifier() UML identifier}, the name of the Javabeans
 * property, or the {@linkplain java.lang.reflect.Method#getName() method name}.
 * 

* In GeoAPI implementation of ISO 19115, {@code UML_IDENTIFIER} and {@code JAVA_PROPERTY} * are usually identical except for {@linkplain java.util.Collection collections}: * {@code JAVA_PROPERTY} names are plural when the property is a collection while * {@code UML_IDENTIFIER} usually stay singular no matter the property cardinality. * * @author Martin Desruisseaux (Geomatys) * @version 3.04 * * @see MetadataStandard#asMap(Object, NullValuePolicy, KeyNamePolicy) * * @since 3.03 * @module */ public enum KeyNamePolicy { /** * The keys in the map are the {@linkplain UML#identifier() UML identifier} of the metadata * properties. If a property has no UML annotation, then the Javabeans property name is used * as a fallback. */ UML_IDENTIFIER, /** * The keys in the map are the Javabeans property names. This is the method name with * the {@code get} or {@code is} prefix removed, and the first letter made lower-case. *

* This is the default type of names returned by {@link AbstractMetadata#asMap()}. */ JAVABEANS_PROPERTY, /** * The keys in the map are the plain {@linkplain java.lang.reflect.Method#getName() method names}. */ METHOD_NAME, /** * The keys in the map are sentences inferred from the UML identifiers. This policy starts * with the same names than {@link #UML_IDENTIFIER}, searches for word boundaries (defined * as a lower case letter followed by a upper case letter) and inserts a space between the * words found. The first letter in the sentence is made upper-case. The first letters of * following words are made lower-case. * * @since 3.04 */ SENTENCE }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy