Uses of Class
org.dom4j.DocumentFactory
-
Packages that use DocumentFactory Package Description org.dom4j Defines the XML Document Object Model in Java interfaces together with some helper classes.org.dom4j.bean An implementation of the dom4j API which allows JavaBeans to be used to store and retrieve attribute values from Element.org.dom4j.datatype An implementation of the dom4j API which supports the XML Schema Data Types specification.org.dom4j.dom An implementation of the dom4j API which also supports the W3C object model.org.dom4j.io Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.org.dom4j.tree Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.org.dom4j.util A collection of utility classes for the dom4j API.org.dom4j.xpp Provides implementation classes to cleanly integrate dom4j with the XML Pull Parser XPP. -
-
Uses of DocumentFactory in org.dom4j
Methods in org.dom4j that return DocumentFactory Modifier and Type Method Description protected static DocumentFactoryDocumentFactory. createSingleton(String className)createSingletoncreates the singleton instance from the given class name.DocumentFactoryQName. getDocumentFactory()DOCUMENT ME!static DocumentFactoryDocumentFactory. getInstance()Access to singleton implementation of DocumentFactory which is used if no DocumentFactory is specified when building using the standard builders.Methods in org.dom4j with parameters of type DocumentFactory Modifier and Type Method Description voidQName. setDocumentFactory(DocumentFactory documentFactory) -
Uses of DocumentFactory in org.dom4j.bean
Subclasses of DocumentFactory in org.dom4j.bean Modifier and Type Class Description classBeanDocumentFactoryBeanDocumentFactoryis a factory of DOM4J objects which may be BeanElements which are backed by JavaBeans and their properties.Methods in org.dom4j.bean that return DocumentFactory Modifier and Type Method Description protected DocumentFactoryBeanElement. getDocumentFactory()static DocumentFactoryBeanDocumentFactory. getInstance()Access to the singleton instance of this factory. -
Uses of DocumentFactory in org.dom4j.datatype
Subclasses of DocumentFactory in org.dom4j.datatype Modifier and Type Class Description classDatatypeDocumentFactoryDatatypeDocumentFactoryis a factory of XML objects which support the XML Schema Data Types specification.classDatatypeElementFactoryDatatypeElementFactoryis a factory for a specific Element in an XML Schema.Fields in org.dom4j.datatype declared as DocumentFactory Modifier and Type Field Description protected DocumentFactoryNamedTypeResolver. documentFactoryFields in org.dom4j.datatype with type parameters of type DocumentFactory Modifier and Type Field Description protected Map<QName,DocumentFactory>NamedTypeResolver. complexTypeMapprotected Map<Element,DocumentFactory>NamedTypeResolver. elementFactoryMapMethods in org.dom4j.datatype that return DocumentFactory Modifier and Type Method Description static DocumentFactoryDatatypeDocumentFactory. getInstance()Access to the singleton instance of this factory.Methods in org.dom4j.datatype with parameters of type DocumentFactory Modifier and Type Method Description (package private) voidNamedTypeResolver. registerComplexType(QName type, DocumentFactory factory)(package private) voidNamedTypeResolver. registerTypedElement(Element element, QName type, DocumentFactory parentFactory)Constructors in org.dom4j.datatype with parameters of type DocumentFactory Constructor Description NamedTypeResolver(DocumentFactory documentFactory) -
Uses of DocumentFactory in org.dom4j.dom
Subclasses of DocumentFactory in org.dom4j.dom Modifier and Type Class Description classDOMDocumentFactoryDOMDocumentFactoryis a factory of DOM4J objects which implement the W3C DOM API.Methods in org.dom4j.dom that return DocumentFactory Modifier and Type Method Description protected DocumentFactoryDOMDocument. getDocumentFactory()protected DocumentFactoryDOMElement. getDocumentFactory()static DocumentFactoryDOMDocumentFactory. getInstance()Access to the singleton instance of this factory. -
Uses of DocumentFactory in org.dom4j.io
Methods in org.dom4j.io that return DocumentFactory Modifier and Type Method Description DocumentFactoryDOMReader. getDocumentFactory()DOCUMENT ME!DocumentFactorySAXModifier. getDocumentFactory()Get theDocumentFactoryused to create the DOM4J document structureDocumentFactorySAXReader. getDocumentFactory()DOCUMENT ME!DocumentFactoryXPP3Reader. getDocumentFactory()DOCUMENT ME!DocumentFactoryXPPReader. getDocumentFactory()DOCUMENT ME!Methods in org.dom4j.io with parameters of type DocumentFactory Modifier and Type Method Description voidDOMReader. setDocumentFactory(DocumentFactory docFactory)This sets theDocumentFactoryused to create new documents.voidSAXModifier. setDocumentFactory(DocumentFactory factory)Sets theDocumentFactoryused to create the DOM4J document tree.voidSAXReader. setDocumentFactory(DocumentFactory documentFactory)This sets theDocumentFactoryused to create new documents.voidSTAXEventReader. setDocumentFactory(DocumentFactory documentFactory)Sets the DocumentFactory to be used when constructing DOM4J nodes.voidXPP3Reader. setDocumentFactory(DocumentFactory documentFactory)This sets theDocumentFactoryused to create new documents.voidXPPReader. setDocumentFactory(DocumentFactory documentFactory)This sets theDocumentFactoryused to create new documents.Constructors in org.dom4j.io with parameters of type DocumentFactory Constructor Description DOMReader(DocumentFactory factory)SAXContentHandler(DocumentFactory documentFactory)SAXContentHandler(DocumentFactory documentFactory, ElementHandler elementHandler)SAXContentHandler(DocumentFactory documentFactory, ElementHandler elementHandler, ElementStack elementStack)SAXModifyContentHandler(DocumentFactory documentFactory)SAXModifyContentHandler(DocumentFactory documentFactory, ElementHandler elementHandler)SAXModifyContentHandler(DocumentFactory documentFactory, ElementHandler elementHandler, ElementStack elementStack)SAXModifyReader(DocumentFactory factory)SAXModifyReader(DocumentFactory factory, boolean validating)SAXReader(DocumentFactory factory)This method internally callsSAXParserFactory.newInstance().newSAXParser().getXMLReader()orXMLReaderFactory.createXMLReader().SAXReader(DocumentFactory factory, boolean validating)This method internally callsSAXParserFactory.newInstance().newSAXParser().getXMLReader()orXMLReaderFactory.createXMLReader().STAXEventReader(DocumentFactory factory)Constructs aSTAXEventReaderinstance that uses the specifiedDocumentFactoryto construct DOM4JNodes.XPP3Reader(DocumentFactory factory)XPPReader(DocumentFactory factory) -
Uses of DocumentFactory in org.dom4j.tree
Methods in org.dom4j.tree that return DocumentFactory Modifier and Type Method Description protected DocumentFactoryAbstractElement. getDocumentFactory()protected DocumentFactoryAbstractNode. getDocumentFactory()protected DocumentFactoryDefaultDocument. getDocumentFactory()protected DocumentFactoryDefaultElement. getDocumentFactory()DocumentFactoryNamespaceStack. getDocumentFactory()Methods in org.dom4j.tree with parameters of type DocumentFactory Modifier and Type Method Description voidDefaultDocument. setDocumentFactory(DocumentFactory documentFactory)voidNamespaceStack. setDocumentFactory(DocumentFactory documentFactory)Constructors in org.dom4j.tree with parameters of type DocumentFactory Constructor Description NamespaceStack(DocumentFactory documentFactory)QNameCache(DocumentFactory documentFactory) -
Uses of DocumentFactory in org.dom4j.util
Subclasses of DocumentFactory in org.dom4j.util Modifier and Type Class Description classIndexedDocumentFactoryIndexedDocumentFactoryis a factory of XML objects which create indexed Element implementations to allow quicker lookup via name of Element and Attributes though at the expense of more memory used to create the name indexes.classNonLazyDocumentFactoryNonLazyDocumentFactoryis a factory of XML objects which avoid using the lazy creation pattern.classUserDataDocumentFactoryUserDataDocumentFactoryis a factory of XML objects which support the adornment of a user data object on an Element or Attribute instance such that the methodsgetData()andsetData()will get and set the values of a user data object.Methods in org.dom4j.util that return DocumentFactory Modifier and Type Method Description static DocumentFactoryIndexedDocumentFactory. getInstance()Access to the singleton instance of this factory.static DocumentFactoryNonLazyDocumentFactory. getInstance()Access to the singleton instance of this factory.static DocumentFactoryUserDataDocumentFactory. getInstance()Access to the singleton instance of this factory.protected DocumentFactoryProxyDocumentFactory. getProxy()Methods in org.dom4j.util with parameters of type DocumentFactory Modifier and Type Method Description protected voidProxyDocumentFactory. setProxy(DocumentFactory proxy)Constructors in org.dom4j.util with parameters of type DocumentFactory Constructor Description ProxyDocumentFactory(DocumentFactory proxy) -
Uses of DocumentFactory in org.dom4j.xpp
Methods in org.dom4j.xpp that return DocumentFactory Modifier and Type Method Description DocumentFactoryProxyXmlStartTag. getDocumentFactory()Methods in org.dom4j.xpp with parameters of type DocumentFactory Modifier and Type Method Description voidProxyXmlStartTag. setDocumentFactory(DocumentFactory documentFactory)
-