Package org.apache.sis.internal.referencing

Examples of org.apache.sis.internal.referencing.NameToIdentifier


     * {@link #head()} and {@link #scope()} will delegate to the given name.
     *
     * @param name The name to wrap.
     */
    public NamedIdentifier(final GenericName name) {
        super(name instanceof ReferenceIdentifier ? (ReferenceIdentifier) name : new NameToIdentifier(name));
        this.name = name;
        isNameSupplied = true;
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.internal.referencing.NameToIdentifier

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.