Package io.markdom.model
Interface MarkdomTextContent
-
- All Superinterfaces:
MarkdomContent,MarkdomNode
public interface MarkdomTextContent extends MarkdomContent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MarkdomContentTypegetContentType()StringgetText()default <Result> Resultselect(MarkdomContentSelection<Result> selection)MarkdomTextContentsetText(String text)-
Methods inherited from interface io.markdom.model.MarkdomContent
choose, getNodeType, select
-
Methods inherited from interface io.markdom.model.MarkdomNode
choose, countChildren, getChildren, getDocument, getFactory, getIndex, getParent, hasChildren, hasDocument, hasParent
-
-
-
-
Method Detail
-
getContentType
default MarkdomContentType getContentType()
- Specified by:
getContentTypein interfaceMarkdomContent
-
getText
String getText()
-
setText
MarkdomTextContent setText(String text)
-
select
default <Result> Result select(MarkdomContentSelection<Result> selection)
- Specified by:
selectin interfaceMarkdomContent
-
-