// $Id: XPathConstants.java,v 1.7.16.1 2004/05/26 22:31:04 jsuttor Exp $ /* * @(#)XPathConstants.java 1.6 04/07/26 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.xml.xpath; import javax.xml.namespace.QName; /** *

XPath constants.

* * @author Norman Walsh * @author Jeff Suttor * @version $Revision: 1.7.16.1 $, $Date: 2004/05/26 22:31:04 $ * @see XML Path Language (XPath) Version 1.0 * @since 1.5 */ public class XPathConstants { /** *

Private constructor to prevent instantiation.

*/ private XPathConstants() { } /** *

The XPath 1.0 number data type.

* *

Maps to Java {@link Double}.

*/ public static final QName NUMBER = new QName("http://www.w3.org/1999/XSL/Transform", "NUMBER"); /** *

The XPath 1.0 string data type.

* *

Maps to Java {@link String}.

*/ public static final QName STRING = new QName("http://www.w3.org/1999/XSL/Transform", "STRING"); /** *

The XPath 1.0 boolean data type.

* *

Maps to Java {@link Boolean}.

*/ public static final QName BOOLEAN = new QName("http://www.w3.org/1999/XSL/Transform", "BOOLEAN"); /** *

The XPath 1.0 NodeSet data type.

* *

Maps to Java {@link org.w3c.dom.NodeList}.

*/ public static final QName NODESET = new QName("http://www.w3.org/1999/XSL/Transform", "NODESET"); /** *

The XPath 1.0 NodeSet data type. * *

Maps to Java {@link org.w3c.dom.Node}.

*/ public static final QName NODE = new QName("http://www.w3.org/1999/XSL/Transform", "NODE"); /** *

The URI for the DOM object model, "http://java.sun.com/jaxp/xpath/dom".

*/ public static final String DOM_OBJECT_MODEL = "http://java.sun.com/jaxp/xpath/dom"; }