< prev index next >

src/java.xml/share/classes/javax/xml/xpath/XPathConstants.java

Print this page




  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.xpath;
  27 
  28 import javax.xml.namespace.QName;
  29 
  30 /**
  31  * <p>XPath constants.</p>
  32  *
  33  * @author <a href="mailto:Norman.Walsh@Sun.COM">Norman Walsh</a>
  34  * @author <a href="mailto:Jeff.Suttor@Sun.COM">Jeff Suttor</a>
  35  * @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a>
  36  * @since 1.5
  37  */
  38 public class XPathConstants {
  39 
  40     /**
  41      * <p>Private constructor to prevent instantiation.</p>
  42      */
  43     private XPathConstants() { }
  44 
  45     /**
  46      * <p>The XPath 1.0 number data type.</p>
  47      *
  48      * <p>Maps to Java {@link Double}.</p>
  49      */
  50     public static final QName NUMBER = new QName("http://www.w3.org/1999/XSL/Transform", "NUMBER");
  51 
  52     /**
  53      * <p>The XPath 1.0 string data type.</p>
  54      *




  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.xpath;
  27 
  28 import javax.xml.namespace.QName;
  29 
  30 /**
  31  * <p>XPath constants.</p>
  32  *
  33  * @author Norman Walsh
  34  * @author Jeff Suttor
  35  * @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a>
  36  * @since 1.5
  37  */
  38 public class XPathConstants {
  39 
  40     /**
  41      * <p>Private constructor to prevent instantiation.</p>
  42      */
  43     private XPathConstants() { }
  44 
  45     /**
  46      * <p>The XPath 1.0 number data type.</p>
  47      *
  48      * <p>Maps to Java {@link Double}.</p>
  49      */
  50     public static final QName NUMBER = new QName("http://www.w3.org/1999/XSL/Transform", "NUMBER");
  51 
  52     /**
  53      * <p>The XPath 1.0 string data type.</p>
  54      *


< prev index next >