Uses of Class
org.jdom2.DocType
-
Packages that use DocType Package Description org.jdom2 Classes representing the components of an XML document.org.jdom2.adapters Classes to create specific DOM Document instances.org.jdom2.filter Classes to both filter and generically type-cast nodes of a document based on type, name, value, or other aspects, and to boolean AND/OR/NEGATE these rules.org.jdom2.input Classes to build JDOM documents from various sources.org.jdom2.input.stax Support classes for building JDOM documents and content using StAX readers.org.jdom2.located Extended JDOM Content Classes that contain location coordinates.org.jdom2.output Classes to output JDOM documents to various destinations.org.jdom2.output.support Classes used to implement output functionality that are not part of the actual Output API, but rather part of the implementation. -
-
Uses of DocType in org.jdom2
Methods in org.jdom2 that return DocType Modifier and Type Method Description DocTypeDocType. clone()DocTypeDocType. detach()DocTypeDefaultJDOMFactory. docType(int line, int col, java.lang.String elementName)DocTypeDefaultJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String systemID)DocTypeDefaultJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)DocTypeDefaultJDOMFactory. docType(java.lang.String elementName)DocTypeDefaultJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)DocTypeDefaultJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)DocTypeJDOMFactory. docType(int line, int col, java.lang.String elementName)This will create theDocTypewith the specified element nameDocTypeJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String systemID)This will create theDocTypewith the specified element name and reference to an external DTD.DocTypeJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)This will create theDocTypewith the specified element name and a reference to an external DTD.DocTypeJDOMFactory. docType(java.lang.String elementName)This will create theDocTypewith the specified element nameDocTypeJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)This will create theDocTypewith the specified element name and reference to an external DTD.DocTypeJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)This will create theDocTypewith the specified element name and a reference to an external DTD.DocTypeSlimJDOMFactory. docType(int line, int col, java.lang.String elementName)DocTypeSlimJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String systemID)DocTypeSlimJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)DocTypeUncheckedJDOMFactory. docType(int line, int col, java.lang.String elementName)DocTypeUncheckedJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String systemID)DocTypeUncheckedJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)DocTypeDocument. getDocType()DocTypeDocType. setElementName(java.lang.String elementName)This will set the root element name declared by this DOCTYPE declaration.protected DocTypeDocType. setParent(Parent parent)DocTypeDocType. setPublicID(java.lang.String publicID)This will set the public ID of an externally referenced DTD.DocTypeDocType. setSystemID(java.lang.String systemID)This will set the system ID of an externally referenced DTD.Methods in org.jdom2 with parameters of type DocType Modifier and Type Method Description DocumentDefaultJDOMFactory. document(Element rootElement, DocType docType)DocumentDefaultJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)DocumentJDOMFactory. document(Element rootElement, DocType docType)DocumentJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)DocumentUncheckedJDOMFactory. document(Element rootElement, DocType docType)DocumentUncheckedJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)DocumentDocument. setDocType(DocType docType)This will set thedeclaration for thisDocTypeDocument.Constructors in org.jdom2 with parameters of type DocType Constructor Description Document(Element rootElement, DocType docType)Document(Element rootElement, DocType docType, java.lang.String baseURI) -
Uses of DocType in org.jdom2.adapters
Methods in org.jdom2.adapters with parameters of type DocType Modifier and Type Method Description org.w3c.dom.DocumentAbstractDOMAdapter. createDocument(DocType doctype)This creates an emptyDocumentobject based on a specific parser implementation with the given DOCTYPE.org.w3c.dom.DocumentDOMAdapter. createDocument(DocType doctype)This creates an emptyDocumentobject based on a specific parser implementation with the given DOCTYPE. -
Uses of DocType in org.jdom2.filter
Methods in org.jdom2.filter that return types with arguments of type DocType Modifier and Type Method Description static Filter<DocType>Filters. doctype()Return a Filter that matches anyDocTypedata. -
Uses of DocType in org.jdom2.input
Methods in org.jdom2.input that return DocType Modifier and Type Method Description DocTypeDOMBuilder. build(org.w3c.dom.DocumentType doctype)This will build a JDOM Element from an existing DOM Element -
Uses of DocType in org.jdom2.input.stax
Methods in org.jdom2.input.stax that return DocType Modifier and Type Method Description static DocTypeDTDParser. parse(java.lang.String input, JDOMFactory factory)Parse out a DOCTYPE declaration as supplied by the standard StAX readers. -
Uses of DocType in org.jdom2.located
Subclasses of DocType in org.jdom2.located Modifier and Type Class Description classLocatedDocTypeAn XML DOCTYPE declaration.Methods in org.jdom2.located that return DocType Modifier and Type Method Description DocTypeLocatedJDOMFactory. docType(int line, int col, java.lang.String elementName)DocTypeLocatedJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String systemID)DocTypeLocatedJDOMFactory. docType(int line, int col, java.lang.String elementName, java.lang.String publicID, java.lang.String systemID) -
Uses of DocType in org.jdom2.output
Methods in org.jdom2.output with parameters of type DocType Modifier and Type Method Description org.w3c.dom.DocumentTypeDOMOutputter. output(DocType doctype)This converts the JDOMDocTypeparameter to a DOM DocumentType, returning the DOM version.voidStAXEventOutputter. output(DocType doctype, javax.xml.stream.util.XMLEventConsumer out)Print out the.DocTypevoidStAXStreamOutputter. output(DocType doctype, javax.xml.stream.XMLStreamWriter out)Print out the.DocTypevoidXMLOutputter. output(DocType doctype, java.io.OutputStream out)This will print theto the given OutputStream.DocTypevoidXMLOutputter. output(DocType doctype, java.io.Writer out)Print out the.DocTypejava.lang.StringXMLOutputter. outputString(DocType doctype)Return a string representing aDocType. -
Uses of DocType in org.jdom2.output.support
Methods in org.jdom2.output.support with parameters of type DocType Modifier and Type Method Description protected voidAbstractSAXOutputProcessor. printDocType(SAXTarget out, FormatStack fstack, DocType docType)This will handle printing of aDocType.protected voidAbstractStAXEventProcessor. printDocType(javax.xml.stream.util.XMLEventConsumer out, FormatStack fstack, javax.xml.stream.XMLEventFactory eventfactory, DocType docType)This will handle printing of aDocType.protected voidAbstractStAXStreamProcessor. printDocType(javax.xml.stream.XMLStreamWriter out, FormatStack fstack, DocType docType)This will handle printing of aDocType.protected voidAbstractXMLOutputProcessor. printDocType(java.io.Writer out, FormatStack fstack, DocType docType)This will handle printing of aDocType.voidAbstractSAXOutputProcessor. process(SAXTarget out, Format format, DocType doctype)voidAbstractStAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, DocType doctype)voidAbstractStAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, DocType doctype)voidAbstractXMLOutputProcessor. process(java.io.Writer out, Format format, DocType doctype)voidSAXOutputProcessor. process(SAXTarget out, Format format, DocType doctype)Print out the.DocTypevoidStAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, DocType doctype)Print out the.DocTypevoidStAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, DocType doctype)Print out the.DocTypevoidXMLOutputProcessor. process(java.io.Writer out, Format format, DocType doctype)Print out the.DocType
-