| |
|
| java.lang.Object net.sf.saxon.om.Axis
Axis | final public class Axis (Code) | | An axis, that is a direction of navigation in the document structure.
|
ANCESTOR | final public static byte ANCESTOR(Code) | | Constant representing the ancestor axis
|
ANCESTOR_OR_SELF | final public static byte ANCESTOR_OR_SELF(Code) | | Constant representing the ancestor-or-self axis
|
ATTRIBUTE | final public static byte ATTRIBUTE(Code) | | Constant representing the attribute axis
|
CHILD | final public static byte CHILD(Code) | | Constant representing the child axis
|
DESCENDANT | final public static byte DESCENDANT(Code) | | Constant representing the descendant axis
|
DESCENDANT_OR_SELF | final public static byte DESCENDANT_OR_SELF(Code) | | Constant representing the descendant-or-self axis
|
FOLLOWING | final public static byte FOLLOWING(Code) | | Constant representing the following axis
|
FOLLOWING_SIBLING | final public static byte FOLLOWING_SIBLING(Code) | | Constant representing the following-sibling axis
|
NAMESPACE | final public static byte NAMESPACE(Code) | | Constant representing the namespace axis
|
PARENT | final public static byte PARENT(Code) | | Constant representing the parent axis
|
PRECEDING | final public static byte PRECEDING(Code) | | Constant representing the preceding axis
|
PRECEDING_OR_ANCESTOR | final public static byte PRECEDING_OR_ANCESTOR(Code) | | Constant representing the preceding-or-ancestor axis. This axis is used internally by the xsl:number implementation, it returns the union of the preceding axis and the ancestor axis.
|
PRECEDING_SIBLING | final public static byte PRECEDING_SIBLING(Code) | | Constant representing the preceding-sibling axis
|
SELF | final public static byte SELF(Code) | | Constant representing the self axis
|
axisName | final public static String[] axisName(Code) | | Table giving the name each axis
|
isForwards | final public static boolean[] isForwards(Code) | | Table indicating for each axis whether it is in forwards document order
|
isPeerAxis | final public static boolean[] isPeerAxis(Code) | | Table indicating for each axis whether it is a peer axis. An axis is a peer
axis if no node on the axis is an ancestor of another node on the axis.
|
isReverse | final public static boolean[] isReverse(Code) | | Table indicating for each axis whether it is in reverse document order
|
isSubtreeAxis | final public static boolean[] isSubtreeAxis(Code) | | Table indicating for each axis whether it is contained within the subtree
rooted at the origin node.
|
principalNodeType | final public static short[] principalNodeType(Code) | | Table indicating the principal node type of each axis
|
containsNodeKind | public static boolean containsNodeKind(int axis, int nodeKind)(Code) | | Determine whether a given kind of node can be found on a given axis
|
isAlwaysEmpty | public static boolean isAlwaysEmpty(int axis, int nodeKind)(Code) | | |
|
|
|