/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2012, Open Source Geospatial Foundation (OSGeo) * * 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.geotools.wcs.v2_0; import java.util.Set; import javax.xml.namespace.QName; import org.geotools.xml.XSD; /** * This interface contains the qualified names of all the types,elements, and attributes in the * http://www.opengis.net/WCS_service-extension_interpolation/1.0 schema. * * @generated */ public final class Interpolation extends XSD { /** singleton instance */ private static final Interpolation instance = new Interpolation(); /** * Returns the singleton instance. */ public static final Interpolation getInstance() { return instance; } /** * private constructor */ private Interpolation() { } protected void addDependencies(Set dependencies) { // } /** * Returns 'http://www.opengis.net/WCS_service-extension_interpolation/1.0'. */ public String getNamespaceURI() { return NAMESPACE; } /** * Returns the location of 'rsub.xsd.'. */ public String getSchemaLocation() { return getClass().getResource("int/v1_0/int.xsd").toString(); } public static final String NAMESPACE = "http://www.opengis.net/WCS_service-extension_interpolation/1.0"; public static final QName InterpolationType = new QName(NAMESPACE, "InterpolationType"); public static final QName InterpolationMethodType = new QName(NAMESPACE, "InterpolationMethodType"); public static final QName InterpolationAxesType = new QName(NAMESPACE, "InterpolationAxesType"); public static final QName InterpolationAxisType = new QName(NAMESPACE, "InterpolationAxisType"); }