package client.net.sf.saxon.ce.pattern;
import client.net.sf.saxon.ce.om.NodeInfo;
import client.net.sf.saxon.ce.type.Type;
/**
* An AnyChildNodePattern is the pattern node(), which matches any node except a root node,
* an attribute node, or a namespace node: in other words, any node that is the child of another
* node.
*/
public final class AnyChildNodeTest extends NodeTest {
private final static AnyChildNodeTest THE_INSTANCE = new AnyChildNodeTest();
/**
* Get the singular instance of this class
* @return the singular instance
*/
public static AnyChildNodeTest getInstance() {
return THE_INSTANCE;
}
private AnyChildNodeTest() {}
/**
* Test whether this node test is satisfied by a given node
* @param nodeKind The type of node to be matched
* @param fingerprint identifies the expanded name of the node to be matched
*/
public boolean matches(int nodeKind, int fingerprint, int annotation) {
return (nodeKind == Type.ELEMENT ||
nodeKind == Type.TEXT ||
nodeKind == Type.COMMENT ||
nodeKind == Type.PROCESSING_INSTRUCTION);
}
/**
* Test whether this node test is satisfied by a given node. This alternative
* method is used in the case of nodes where calculating the fingerprint is expensive,
* for example DOM or JDOM nodes.
* @param node the node to be matched
*/
public boolean matches(NodeInfo node) {
int nodeKind = node.getNodeKind();
return (nodeKind == Type.ELEMENT ||
nodeKind == Type.TEXT ||
nodeKind == Type.COMMENT ||
nodeKind == Type.PROCESSING_INSTRUCTION);
}
/**
* Determine the default priority to use if this pattern appears as a match pattern
* for a template with no explicit priority attribute.
*/
public double getDefaultPriority() {
return -0.5;
}
/**
* Get a mask indicating which kinds of nodes this NodeTest can match. This is a combination
* of bits: 1<<Type.ELEMENT for element nodes, 1<<Type.TEXT for text nodes, and so on.
*/
public int getNodeKindMask() {
return 1<<Type.ELEMENT | 1<<Type.TEXT | 1<<Type.COMMENT | 1<<Type.PROCESSING_INSTRUCTION;
}
public String toString() {
return "node()";
}
/**
* Returns a hash code value for the object.
*/
public int hashCode() {
return "AnyChildNodeTest".hashCode();
}
}
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0.