org.primordion.xholon.base
Class XPathConstants

java.lang.Object
  extended byorg.primordion.xholon.base.XPathConstants

public class XPathConstants
extends java.lang.Object

XPath constants.

Adapted November 14, 2005 by Ken Webb for use in the Xholon project. Replaced QName with int, and added IXHOLON

Since:
0.1 (Xholon)
Author:
Norman Walsh, Jeff Suttor
See Also:
XML Path Language (XPath) Version 1.0

Field Summary
static int BOOLEAN
          The XPath 1.0 boolean data type.
static int IXHOLON
          The Xholon data type.
static int NODE
          The XPath 1.0 Node data type.
static int NODESET
          The XPath 1.0 NodeSet data type.
static int NUMBER
          The XPath 1.0 number data type.
static int STRING
          The XPath 1.0 string data type.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

IXHOLON

public static final int IXHOLON

The Xholon data type.

Maps to Java IXholon.

See Also:
Constant Field Values

NUMBER

public static final int NUMBER

The XPath 1.0 number data type.

Maps to Java Double.

See Also:
Constant Field Values

STRING

public static final int STRING

The XPath 1.0 string data type.

Maps to Java String.

See Also:
Constant Field Values

BOOLEAN

public static final int BOOLEAN

The XPath 1.0 boolean data type.

Maps to Java Boolean.

See Also:
Constant Field Values

NODESET

public static final int NODESET

The XPath 1.0 NodeSet data type.

Maps to Java org.w3c.dom.NodeList.

See Also:
Constant Field Values

NODE

public static final int NODE

The XPath 1.0 Node data type.

Maps to Java org.w3c.dom.Node.

See Also:
Constant Field Values