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

thredds.catalog2.xml.names.MetadataElementNames Maven / Gradle / Ivy

Go to download

The NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of scientific data formats.

There is a newer version: 4.3.22
Show newest version
package thredds.catalog2.xml.names;

import thredds.catalog2.xml.names.CatalogNamespace;

import javax.xml.XMLConstants;
import javax.xml.namespace.QName;

/**
 * XML qualified names for the elements and attributes defined by
 * the "metadata" element in the THREDDS InvCatalog
 * specification (version 1.0.2).
 *
 * @author edavis
 * @since 4.0
 */
public class MetadataElementNames
{
  private MetadataElementNames(){}

  public static final QName MetadataElement
          = new QName( CatalogNamespace.CATALOG_1_0.getNamespaceUri( ),
                       "metadata");
  public static final QName MetadataElement_Inherited
          = new QName( XMLConstants.NULL_NS_URI,
                       "inherited");
  public static final QName MetadataElement_XlinkTitle
          = new QName( CatalogNamespace.XLINK.getNamespaceUri(),
                       "title");
  public static final QName MetadataElement_XlinkHref
          = new QName( CatalogNamespace.XLINK.getNamespaceUri(),
                       "href");
  public static final QName MetadataElement_XlinkType
          = new QName( CatalogNamespace.XLINK.getNamespaceUri(),
                       "type");
  public static final QName MetadataElement_metadataType
          = new QName( XMLConstants.NULL_NS_URI,
                       "metadataType");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy