Methods Summary |
---|
public boolean | bool()Cast result object to a boolean.
return false;
|
public boolean | equals(com.sun.org.apache.xpath.internal.objects.XObject obj2)Tell if two objects are functionally equal.
return obj2.getType() == CLASS_NULL;
|
public int | getType()Tell what kind of class this is.
return CLASS_NULL;
|
public java.lang.String | getTypeString()Given a request type, return the equivalent string.
For diagnostic purposes.
return "#CLASS_NULL";
|
public double | num()Cast result object to a number.
return 0.0;
|
public int | rtf(com.sun.org.apache.xpath.internal.XPathContext support)Cast result object to a result tree fragment.
// DTM frag = support.createDocumentFragment();
// %REVIEW%
return DTM.NULL;
|
public java.lang.String | str()Cast result object to a string.
return "";
|