Package org.apache.xpath.objects
Class XNull
- java.lang.Object
-
- org.apache.xpath.Expression
-
- org.apache.xpath.objects.XObject
-
- org.apache.xpath.axes.NodeSequence
-
- org.apache.xpath.objects.XNodeSet
-
- org.apache.xpath.objects.XNull
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,javax.xml.transform.SourceLocator,DTMIterator,PathComponent,ExpressionNode,XPathVisitable
public class XNull extends XNodeSet
This class represents an XPath null object, and is capable of converting the null to other types, such as a string.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.xpath.objects.XObject
CLASS_BOOLEAN, CLASS_NODESET, CLASS_NULL, CLASS_NUMBER, CLASS_RTREEFRAG, CLASS_STRING, CLASS_UNKNOWN, CLASS_UNRESOLVEDVARIABLE
-
Fields inherited from interface org.apache.xml.dtm.DTMIterator
FILTER_ACCEPT, FILTER_REJECT, FILTER_SKIP
-
-
Constructor Summary
Constructors Constructor Description XNull()Create an XObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanbool()Cast result object to a boolean.booleanequals(XObject obj2)Tell if two objects are functionally equal.intgetType()Tell what kind of class this is.java.lang.StringgetTypeString()Given a request type, return the equivalent string.doublenum()Cast result object to a number.intrtf(XPathContext support)Cast result object to a result tree fragment.java.lang.Stringstr()Cast result object to a string.-
Methods inherited from class org.apache.xpath.objects.XNodeSet
appendToFsb, boolWithSideEffects, compare, dispatchCharactersEvents, getFresh, getNumberFromNode, getStringFromNode, greaterThan, greaterThanOrEqual, iter, iterRaw, lessThan, lessThanOrEqual, mutableNodeset, nodelist, nodeset, notEquals, numWithSideEffects, object, release, xstr
-
Methods inherited from class org.apache.xpath.axes.NodeSequence
allowDetachToRelease, clone, cloneWithReset, detach, fixupVariables, getAnalysisBits, getAxis, getContainedIter, getCurrentNode, getCurrentPos, getDTM, getDTMManager, getExpandEntityReferences, getLength, getRoot, getWhatToShow, hasCache, isDocOrdered, isFresh, isMutable, item, nextNode, previousNode, reset, runTo, setCurrentPos, setItem, setIter, setRoot, setShouldCacheNodes
-
Methods inherited from class org.apache.xpath.objects.XObject
callVisitors, castToType, create, create, deepEquals, destruct, execute, rtf, rtree, rtree, toString
-
Methods inherited from class org.apache.xpath.Expression
asIterator, asIteratorRaw, asNode, assertion, bool, canTraverseOutsideSubtree, error, execute, execute, execute, executeCharsToContentHandler, exprAddChild, exprGetChild, exprGetNumChildren, exprGetParent, exprSetParent, getColumnNumber, getExpressionOwner, getLineNumber, getPublicId, getSystemId, isNodesetExpr, isStableNumber, num, warn, xstr
-
-
-
-
Method Detail
-
getType
public int getType()
Tell what kind of class this is.
-
getTypeString
public java.lang.String getTypeString()
Given a request type, return the equivalent string. For diagnostic purposes.- Overrides:
getTypeStringin classXNodeSet- Returns:
- type string "#CLASS_NULL"
-
num
public double num()
Cast result object to a number.
-
bool
public boolean bool()
Cast result object to a boolean.
-
str
public java.lang.String str()
Cast result object to a string.
-
rtf
public int rtf(XPathContext support)
Cast result object to a result tree fragment.
-
-