Package org.apache.xml.dtm
Class Axis
java.lang.Object
org.apache.xml.dtm.Axis
public final class Axis extends Object
Specifies values related to XPath Axes.
The ancestor, descendant, following, preceding and self axes partition a document (ignoring attribute and namespace nodes): they do not overlap and together they contain all the nodes in the document.
-
Field Summary
Fields Modifier and Type Field Description static intALLA non-xpath axis, returns all nodes in the tree from and including the root.static intALLFROMNODEA non-xpath axis, traversing the subtree including the subtree root, descendants, attributes, and namespace node decls.static intANCESTORThe ancestor axis contains the ancestors of the context node; the ancestors of the context node consist of the parent of context node and the parent's parent and so on; thus, the ancestor axis will always include the root node, unless the context node is the root node.static intANCESTORORSELFthe ancestor-or-self axis contains the context node and the ancestors of the context node; thus, the ancestor axis will always include the root node.static intATTRIBUTEthe attribute axis contains the attributes of the context node; the axis will be empty unless the context node is an element.static intCHILDThe child axis contains the children of the context node.static intDESCENDANTThe descendant axis contains the descendants of the context node; a descendant is a child or a child of a child and so on; thus the descendant axis never contains attribute or namespace nodes.static intDESCENDANTORSELFThe descendant-or-self axis contains the context node and the descendants of the context node.static intDESCENDANTSFROMROOTA non-xpath axis, returns all nodes that aren't namespaces or attributes, from and including the root.static intDESCENDANTSORSELFFROMROOTA non-xpath axis, returns all nodes that aren't namespaces or attributes, from and including the root.static intFILTEREDLISTA non-xpath axis, for functions.static intFOLLOWINGthe following axis contains all nodes in the same document as the context node that are after the context node in document order, excluding any descendants and excluding attribute nodes and namespace nodes.static intFOLLOWINGSIBLINGThe following-sibling axis contains all the following siblings of the context node; if the context node is an attribute node or namespace node, the following-sibling axis is empty.static intNAMESPACEThe namespace axis contains the namespace nodes of the context node; the axis will be empty unless the context node is an element.static intNAMESPACEDECLSThe namespace axis contains the namespace nodes of the context node; the axis will be empty unless the context node is an element.static intPARENTThe parent axis contains the parent of the context node, if there is one.static intPRECEDINGThe preceding axis contains all nodes in the same document as the context node that are before the context node in document order, excluding any ancestors and excluding attribute nodes and namespace nodesstatic intPRECEDINGANDANCESTORA non-xpath axis, traversing the the preceding and the ancestor nodes, needed for inverseing select patterns to match patterns.static intPRECEDINGSIBLINGThe preceding-sibling axis contains all the preceding siblings of the context node; if the context node is an attribute node or namespace node, the preceding-sibling axis is empty.static intROOTA non-xpath axis, returns root only.static intSELFThe self axis contains just the context node itself. -
Constructor Summary
Constructors Constructor Description Axis() -
Method Summary
Modifier and Type Method Description static StringgetNames(int index)static intgetNamesLength()static booleanisReverse(int axis)
-
Field Details
-
ANCESTOR
public static final int ANCESTORThe ancestor axis contains the ancestors of the context node; the ancestors of the context node consist of the parent of context node and the parent's parent and so on; thus, the ancestor axis will always include the root node, unless the context node is the root node.- See Also:
- Constant Field Values
-
ANCESTORORSELF
public static final int ANCESTORORSELFthe ancestor-or-self axis contains the context node and the ancestors of the context node; thus, the ancestor axis will always include the root node.- See Also:
- Constant Field Values
-
ATTRIBUTE
public static final int ATTRIBUTEthe attribute axis contains the attributes of the context node; the axis will be empty unless the context node is an element.- See Also:
- Constant Field Values
-
CHILD
public static final int CHILDThe child axis contains the children of the context node.- See Also:
- Constant Field Values
-
DESCENDANT
public static final int DESCENDANTThe descendant axis contains the descendants of the context node; a descendant is a child or a child of a child and so on; thus the descendant axis never contains attribute or namespace nodes.- See Also:
- Constant Field Values
-
DESCENDANTORSELF
public static final int DESCENDANTORSELFThe descendant-or-self axis contains the context node and the descendants of the context node.- See Also:
- Constant Field Values
-
FOLLOWING
public static final int FOLLOWINGthe following axis contains all nodes in the same document as the context node that are after the context node in document order, excluding any descendants and excluding attribute nodes and namespace nodes.- See Also:
- Constant Field Values
-
FOLLOWINGSIBLING
public static final int FOLLOWINGSIBLINGThe following-sibling axis contains all the following siblings of the context node; if the context node is an attribute node or namespace node, the following-sibling axis is empty.- See Also:
- Constant Field Values
-
NAMESPACEDECLS
public static final int NAMESPACEDECLSThe namespace axis contains the namespace nodes of the context node; the axis will be empty unless the context node is an element.- See Also:
- Constant Field Values
-
NAMESPACE
public static final int NAMESPACEThe namespace axis contains the namespace nodes of the context node; the axis will be empty unless the context node is an element.- See Also:
- Constant Field Values
-
PARENT
public static final int PARENTThe parent axis contains the parent of the context node, if there is one.- See Also:
- Constant Field Values
-
PRECEDING
public static final int PRECEDINGThe preceding axis contains all nodes in the same document as the context node that are before the context node in document order, excluding any ancestors and excluding attribute nodes and namespace nodes- See Also:
- Constant Field Values
-
PRECEDINGSIBLING
public static final int PRECEDINGSIBLINGThe preceding-sibling axis contains all the preceding siblings of the context node; if the context node is an attribute node or namespace node, the preceding-sibling axis is empty.- See Also:
- Constant Field Values
-
SELF
public static final int SELFThe self axis contains just the context node itself.- See Also:
- Constant Field Values
-
ALLFROMNODE
public static final int ALLFROMNODEA non-xpath axis, traversing the subtree including the subtree root, descendants, attributes, and namespace node decls.- See Also:
- Constant Field Values
-
PRECEDINGANDANCESTOR
public static final int PRECEDINGANDANCESTORA non-xpath axis, traversing the the preceding and the ancestor nodes, needed for inverseing select patterns to match patterns.- See Also:
- Constant Field Values
-
ALL
public static final int ALLA non-xpath axis, returns all nodes in the tree from and including the root.- See Also:
- Constant Field Values
-
DESCENDANTSFROMROOT
public static final int DESCENDANTSFROMROOTA non-xpath axis, returns all nodes that aren't namespaces or attributes, from and including the root.- See Also:
- Constant Field Values
-
DESCENDANTSORSELFFROMROOT
public static final int DESCENDANTSORSELFFROMROOTA non-xpath axis, returns all nodes that aren't namespaces or attributes, from and including the root.- See Also:
- Constant Field Values
-
ROOT
public static final int ROOTA non-xpath axis, returns root only.- See Also:
- Constant Field Values
-
FILTEREDLIST
public static final int FILTEREDLISTA non-xpath axis, for functions.- See Also:
- Constant Field Values
-
-
Constructor Details
-
Axis
public Axis()
-
-
Method Details
-
isReverse
public static boolean isReverse(int axis) -
getNames
-
getNamesLength
public static int getNamesLength()
-