Package org.apache.abdera.model
Interface TextValue
-
@Deprecated(since="2021-07-29") public interface TextValue
Deprecated.This API is deprecated as Apache Abdera is a retired project since 2017.A 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 Deprecated Methods Modifier and Type Method Description void
discard()
Deprecated.Delete this nodejavax.activation.DataHandler
getDataHandler()
Deprecated.A DataHandler for Base64 encoded binary datajava.io.InputStream
getInputStream()
Deprecated.An InputStream used to read the text content<T extends Base>
TgetParentElement()
Deprecated.The parent elementjava.lang.String
getText()
Deprecated.Return the text value
-
-
-
Method Detail
-
getDataHandler
javax.activation.DataHandler getDataHandler()
Deprecated.A DataHandler for Base64 encoded binary data
-
getInputStream
java.io.InputStream getInputStream()
Deprecated.An InputStream used to read the text content
-
getText
java.lang.String getText()
Deprecated.Return the text value
-
getParentElement
<T extends Base> T getParentElement()
Deprecated.The parent element
-
discard
void discard()
Deprecated.Delete this node
-
-