Package org.apache.abdera.util
Class AbstractXPath
- java.lang.Object
-
- org.apache.abdera.util.AbstractXPath
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
booleanValueOf(java.lang.String path, Base base)
Deprecated.Return a boolean representation of the specified Pathjava.lang.Object
evaluate(java.lang.String path, Base base)
Deprecated.Evaluate the specified XPath and return it's valuejava.util.Map<java.lang.String,java.lang.String>
getDefaultNamespaces()
Deprecated.Return the default mapping of Prefixes to XML Namespacesjava.lang.Number
numericValueOf(java.lang.String path, Base base)
Deprecated.Return a numeric representation of the specified Pathjava.util.List
selectNodes(java.lang.String path, Base base)
Deprecated.Return a listing of nodes matching the specified Pathjava.lang.Object
selectSingleNode(java.lang.String path, Base base)
Deprecated.Return the first node matching the specified Pathjava.lang.String
valueOf(java.lang.String path, Base base)
Deprecated.Return the text value of the specified Path-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.abdera.xpath.XPath
booleanValueOf, evaluate, numericValueOf, selectNodes, selectSingleNode, valueOf
-
-
-
-
Method Detail
-
getDefaultNamespaces
public java.util.Map<java.lang.String,java.lang.String> getDefaultNamespaces()
Deprecated.Description copied from interface:XPath
Return the default mapping of Prefixes to XML Namespaces- Specified by:
getDefaultNamespaces
in interfaceXPath
-
selectNodes
public java.util.List selectNodes(java.lang.String path, Base base) throws XPathException
Deprecated.Description copied from interface:XPath
Return a listing of nodes matching the specified Path- Specified by:
selectNodes
in interfaceXPath
- Throws:
XPathException
-
selectSingleNode
public java.lang.Object selectSingleNode(java.lang.String path, Base base) throws XPathException
Deprecated.Description copied from interface:XPath
Return the first node matching the specified Path- Specified by:
selectSingleNode
in interfaceXPath
- Throws:
XPathException
-
evaluate
public java.lang.Object evaluate(java.lang.String path, Base base) throws XPathException
Deprecated.Description copied from interface:XPath
Evaluate the specified XPath and return it's value- Specified by:
evaluate
in interfaceXPath
- Throws:
XPathException
-
valueOf
public java.lang.String valueOf(java.lang.String path, Base base) throws XPathException
Deprecated.Description copied from interface:XPath
Return the text value of the specified Path- Specified by:
valueOf
in interfaceXPath
- Throws:
XPathException
-
booleanValueOf
public boolean booleanValueOf(java.lang.String path, Base base) throws XPathException
Deprecated.Description copied from interface:XPath
Return a boolean representation of the specified Path- Specified by:
booleanValueOf
in interfaceXPath
- Throws:
XPathException
-
numericValueOf
public java.lang.Number numericValueOf(java.lang.String path, Base base) throws XPathException
Deprecated.Description copied from interface:XPath
Return a numeric representation of the specified Path- Specified by:
numericValueOf
in interfaceXPath
- Throws:
XPathException
-
-