Package io.markdom.handler.html.w3c
Class XhtmlDocumentResult
- java.lang.Object
-
- io.markdom.handler.html.w3c.XhtmlDocumentResult
-
- All Implemented Interfaces:
HtmlDocumentResult<Document,Element,NodeList>
public final class XhtmlDocumentResult extends Object implements HtmlDocumentResult<Document,Element,NodeList>
-
-
Constructor Summary
Constructors Constructor Description XhtmlDocumentResult(DocumentBuilder builder, Document document)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocumentasDocument()StringasDocumentText(boolean pretty)ElementasElement(String tagName, io.markdom.util.Attributes attributes)NodeListasElements()StringasElementsText(boolean pretty)StringasElementText(String tagName, io.markdom.util.Attributes attributes, boolean pretty)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.markdom.handler.html.HtmlDocumentResult
asDocumentText, asElement, asElementsText, asElementText, asElementText, asElementText
-
-
-
-
Constructor Detail
-
XhtmlDocumentResult
public XhtmlDocumentResult(DocumentBuilder builder, Document document)
-
-
Method Detail
-
asDocument
public Document asDocument()
- Specified by:
asDocumentin interfaceHtmlDocumentResult<Document,Element,NodeList>
-
asDocumentText
public String asDocumentText(boolean pretty)
- Specified by:
asDocumentTextin interfaceHtmlDocumentResult<Document,Element,NodeList>
-
asElement
public Element asElement(String tagName, io.markdom.util.Attributes attributes)
- Specified by:
asElementin interfaceHtmlDocumentResult<Document,Element,NodeList>
-
asElementText
public String asElementText(String tagName, io.markdom.util.Attributes attributes, boolean pretty)
- Specified by:
asElementTextin interfaceHtmlDocumentResult<Document,Element,NodeList>
-
asElements
public NodeList asElements()
- Specified by:
asElementsin interfaceHtmlDocumentResult<Document,Element,NodeList>
-
asElementsText
public String asElementsText(boolean pretty)
- Specified by:
asElementsTextin interfaceHtmlDocumentResult<Document,Element,NodeList>
-
-