Package org.apache.abdera.model
Interface TextValue
-
public interface TextValueA text value. Returned by the Abdera XPath implementation when querying for text nodes (e.g. xpath.selectNodes("//text()"); ...). There should be very little reason why an application would use this. It is provided to keep applications from having to deal directly with the underlying parser impl
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddiscard()Delete this nodejavax.activation.DataHandlergetDataHandler()A DataHandler for Base64 encoded binary datajava.io.InputStreamgetInputStream()An InputStream used to read the text content<T extends Base>
TgetParentElement()The parent elementjava.lang.StringgetText()Return the text value
-
-
-
Method Detail
-
getDataHandler
javax.activation.DataHandler getDataHandler()
A DataHandler for Base64 encoded binary data
-
getInputStream
java.io.InputStream getInputStream()
An InputStream used to read the text content
-
getText
java.lang.String getText()
Return the text value
-
getParentElement
<T extends Base> T getParentElement()
The parent element
-
discard
void discard()
Delete this node
-
-