Uses of Class
org.dom4j.QName
-
Packages that use QName 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. -
-
Uses of QName in org.dom4j
Methods in org.dom4j that return QName Modifier and Type Method Description QNameDocumentFactory. createQName(String localName)QNameDocumentFactory. createQName(String qualifiedName, String uri)QNameDocumentFactory. createQName(String name, String prefix, String uri)QNameDocumentFactory. createQName(String localName, Namespace namespace)static QNameDocumentHelper. createQName(String localName)static QNameDocumentHelper. createQName(String localName, Namespace namespace)static QNameQName. get(String name)static QNameQName. get(String qualifiedName, String uri)static QNameQName. get(String name, String prefix, String uri)static QNameQName. get(String name, Namespace namespace)static QNameQName. get(String localName, Namespace namespace, String qualifiedName)QNameAttribute. getQName()Returns theQNameof this attribute which represents the local name, the qualified name and theNamespace.QNameElement. getQName()Returns theQNameof this element which represents the local name, the qualified name and theNamespace.QNameElement. getQName(String qualifiedName)Returns theQNamefor the given qualified name, using the namespace URI in scope for the given prefix of the qualified name or the default namespace if the qualified name has no prefix.protected QNameDocumentFactory. intern(QName qname)DOCUMENT ME!Methods in org.dom4j that return types with arguments of type QName Modifier and Type Method Description List<QName>DocumentFactory. getQNames()Returns a list of all the QName instances currently used by this document factoryMethods in org.dom4j with parameters of type QName Modifier and Type Method Description ElementElement. addAttribute(QName qName, String value)Adds the attribute value of the given fully qualified name.ElementBranch. addElement(QName qname)Adds a newElementnode with the givenQNameto this branch and returns a reference to the new node.AttributeElement. attribute(QName qName)DOCUMENT ME!StringElement. attributeValue(QName qName)This returns the attribute value for the attribute with the given fully qualified name or null if there is no such attribute or the empty string if the attribute value is empty.StringElement. attributeValue(QName qName, String defaultValue)This returns the attribute value for the attribute with the given fully qualified name or the default value if there is no such attribute value.AttributeDocumentFactory. createAttribute(Element owner, QName qname, String value)static AttributeDocumentHelper. createAttribute(Element owner, QName qname, String value)ElementElement. createCopy(QName qName)Creates a deep copy of this element with the given fully qualified name.ElementDocumentFactory. createElement(QName qname)static ElementDocumentHelper. createElement(QName qname)ElementElement. element(QName qName)Returns the first element for the given fully qualified name.Iterator<Element>Element. elementIterator(QName qName)Returns an iterator over the elements contained in this element which match the given fully qualified name.List<Element>Element. elements(QName qName)Returns the elements contained in this element with the given fully qualified name.StringElement. elementText(QName qname)StringElement. elementTextTrim(QName qname)protected QNameDocumentFactory. intern(QName qname)DOCUMENT ME!voidElement. setAttributeValue(QName qName, String value)Deprecated.As of version 0.5.voidElement. setQName(QName qname)Sets theQNameof this element which represents the local name, the qualified name and theNamespace. -
Uses of QName in org.dom4j.bean
Methods in org.dom4j.bean that return QName Modifier and Type Method Description QNameBeanAttribute. getQName()QNameBeanAttributeList. getQName(int index)QNameBeanMetaData. getQName(int index)Methods in org.dom4j.bean with parameters of type QName Modifier and Type Method Description ElementBeanElement. addAttribute(QName qName, String value)BeanAttributeBeanAttributeList. attribute(QName qname)BeanAttributeBeanElement. attribute(QName qname)AttributeBeanDocumentFactory. createAttribute(Element owner, QName qname, String value)protected ObjectBeanDocumentFactory. createBean(QName qname)protected ObjectBeanDocumentFactory. createBean(QName qname, Attributes attributes)ElementBeanDocumentFactory. createElement(QName qname)ElementBeanDocumentFactory. createElement(QName qname, Attributes attributes)intBeanMetaData. getIndex(QName qName)Constructors in org.dom4j.bean with parameters of type QName Constructor Description BeanElement(QName qname)BeanElement(QName qname, Object bean) -
Uses of QName in org.dom4j.datatype
Fields in org.dom4j.datatype with type parameters of type QName Modifier and Type Field Description protected Map<QName,DocumentFactory>NamedTypeResolver. complexTypeMapprotected Map<QName,XSDatatype>NamedTypeResolver. simpleTypeMapprotected Map<Element,QName>NamedTypeResolver. typedElementMapMethods in org.dom4j.datatype that return QName Modifier and Type Method Description QNameDatatypeAttribute. getQName()QNameDatatypeElementFactory. getQName()DOCUMENT ME!Methods in org.dom4j.datatype with parameters of type QName Modifier and Type Method Description AttributeDatatypeDocumentFactory. createAttribute(Element owner, QName qname, String value)AttributeDatatypeElementFactory. createAttribute(Element owner, QName qname, String value)ElementDatatypeElementFactory. createElement(QName qname)XSDatatypeDatatypeElementFactory. getAttributeXSDatatype(QName attributeQName)DOCUMENT ME!XSDatatypeDatatypeElementFactory. getChildElementXSDatatype(QName qname)DOCUMENT ME!DatatypeElementFactoryDatatypeDocumentFactory. getElementFactory(QName elementQName)Registers the givenDatatypeElementFactoryfor the given <element> schema element(package private) voidNamedTypeResolver. registerComplexType(QName type, DocumentFactory factory)(package private) voidNamedTypeResolver. registerSimpleType(QName type, XSDatatype datatype)(package private) voidNamedTypeResolver. registerTypedElement(Element element, QName type, DocumentFactory parentFactory)voidDatatypeElementFactory. setAttributeXSDatatype(QName attributeQName, XSDatatype type)Registers the givenXSDatatypefor the given <attribute> QNamesvoidDatatypeElementFactory. setChildElementXSDatatype(QName qname, XSDatatype dataType)Constructors in org.dom4j.datatype with parameters of type QName Constructor Description DatatypeAttribute(QName qname, XSDatatype datatype)DatatypeAttribute(QName qname, XSDatatype datatype, String text)DatatypeElement(QName qname, int attributeCount, XSDatatype type)DatatypeElement(QName qname, XSDatatype datatype)DatatypeElementFactory(QName elementQName) -
Uses of QName in org.dom4j.dom
Methods in org.dom4j.dom that return QName Modifier and Type Method Description protected QNameDOMElement. getQName(String namespace, String qualifiedName)Methods in org.dom4j.dom with parameters of type QName Modifier and Type Method Description AttributeDOMDocumentFactory. createAttribute(Element owner, QName qname, String value)ElementDOMDocumentFactory. createElement(QName qname)ElementDOMDocumentFactory. createElement(QName qname, int attributeCount)Constructors in org.dom4j.dom with parameters of type QName Constructor Description DOMAttribute(Element parent, QName qname, String value)DOMAttribute(QName qname)DOMAttribute(QName qname, String value)DOMElement(QName qname)DOMElement(QName qname, int attributeCount) -
Uses of QName in org.dom4j.io
Methods in org.dom4j.io that return QName Modifier and Type Method Description QNameSTAXEventReader. createQName(QName qname)Constructs a new DOM4J QName from the provided JAXP QName.Methods in org.dom4j.io with parameters of type QName Modifier and Type Method Description QNameSTAXEventWriter. createQName(QName qname) -
Uses of QName in org.dom4j.tree
Fields in org.dom4j.tree with type parameters of type QName Modifier and Type Field Description protected Map<Namespace,Map<String,QName>>QNameCache. namespaceCacheprotected Map<String,QName>QNameCache. noNamespaceCacheCache ofQNameinstances with no namespaceMethods in org.dom4j.tree that return QName Modifier and Type Method Description protected QNameNamespaceStack. createQName(String localName, String qualifiedName, Namespace namespace)Factory method to creeate new QName instances.protected QNameQNameCache. createQName(String name)Factory method to create a new QName object which can be overloaded to create derived QName instancesprotected QNameQNameCache. createQName(String name, Namespace namespace)Factory method to create a new QName object which can be overloaded to create derived QName instancesprotected QNameQNameCache. createQName(String name, Namespace namespace, String qualifiedName)Factory method to create a new QName object which can be overloaded to create derived QName instancesQNameQNameCache. get(String name)DOCUMENT ME!QNameQNameCache. get(String qualifiedName, String uri)QNameQNameCache. get(String name, Namespace namespace)DOCUMENT ME!QNameQNameCache. get(String localName, Namespace namespace, String qName)DOCUMENT ME!QNameNamespaceStack. getAttributeQName(String namespaceURI, String localName, String qualifiedName)QNameAbstractElement. getQName(String qualifiedName)QNameBaseElement. getQName()QNameDefaultElement. getQName()QNameFlyweightAttribute. getQName()QNameNamespaceStack. getQName(String namespaceURI, String localName, String qualifiedName)QNameQNameCache. intern(QName qname)DOCUMENT ME!protected QNameNamespaceStack. pushQName(String localName, String qualifiedName, Namespace namespace, String prefix)Adds the QName to the stack of available QNamesMethods in org.dom4j.tree that return types with arguments of type QName Modifier and Type Method Description protected Map<String,QName>QNameCache. createMap()A factory methodprotected Map<String,QName>NamespaceStack. getNamespaceCache()protected Map<String,QName>QNameCache. getNamespaceCache(Namespace namespace)DOCUMENT ME!List<QName>QNameCache. getQNames()Returns a list of all the QName instances currently usedMethods in org.dom4j.tree with parameters of type QName Modifier and Type Method Description ElementAbstractElement. addAttribute(QName qName, String value)ElementAbstractBranch. addElement(QName qname)ElementAbstractDocument. addElement(QName qName)AttributeAbstractElement. attribute(QName qName)AttributeDefaultElement. attribute(QName qName)StringAbstractElement. attributeValue(QName qName)StringAbstractElement. attributeValue(QName qName, String defaultValue)ElementAbstractElement. createCopy(QName qName)protected ElementAbstractElement. createElement(QName qName)ElementAbstractElement. element(QName qName)ElementDefaultElement. element(QName qName)Iterator<Element>AbstractElement. elementIterator(QName qName)List<Element>AbstractElement. elements(QName qName)StringAbstractElement. elementText(QName qName)StringAbstractElement. elementTextTrim(QName qName)QNameQNameCache. intern(QName qname)DOCUMENT ME!voidAbstractElement. setAttributeValue(QName qName, String value)Deprecated.As of version 0.5.voidBaseElement. setQName(QName name)voidDefaultElement. setQName(QName name)Constructors in org.dom4j.tree with parameters of type QName Constructor Description BaseElement(QName qname)DefaultAttribute(Element parent, QName qname, String value)DefaultAttribute(QName qname)DefaultAttribute(QName qname, String value)DefaultElement(QName qname)DefaultElement(QName qname, int attributeCount)ElementQNameIterator(Iterator<Node> proxy, QName qName)Deprecated.FlyweightAttribute(QName qname)FlyweightAttribute(QName qname, String value) -
Uses of QName in org.dom4j.util
Fields in org.dom4j.util declared as QName Modifier and Type Field Description protected static QNameXMLErrorHandler. ERROR_QNAMEprotected static QNameXMLErrorHandler. FATALERROR_QNAMEprotected static QNameXMLErrorHandler. WARNING_QNAMEMethods in org.dom4j.util that return QName Modifier and Type Method Description QNameProxyDocumentFactory. createQName(String localName)QNameProxyDocumentFactory. createQName(String qualifiedName, String uri)QNameProxyDocumentFactory. createQName(String name, String prefix, String uri)QNameProxyDocumentFactory. createQName(String localName, Namespace namespace)QNameXMLErrorHandler. getErrorQName()QNameXMLErrorHandler. getFatalErrorQName()QNameXMLErrorHandler. getWarningQName()Methods in org.dom4j.util with parameters of type QName Modifier and Type Method Description AttributeIndexedElement. attribute(QName qName)static booleanAttributeHelper. booleanValue(Element element, QName attributeQName)intNodeComparator. compare(QName n1, QName n2)AttributeProxyDocumentFactory. createAttribute(Element owner, QName qname, String value)AttributeUserDataDocumentFactory. createAttribute(Element owner, QName qname, String value)ElementIndexedDocumentFactory. createElement(QName qname)ElementIndexedDocumentFactory. createElement(QName qname, int attributeCount)ElementNonLazyDocumentFactory. createElement(QName qname)ElementProxyDocumentFactory. createElement(QName qname)ElementUserDataDocumentFactory. createElement(QName qname)protected ElementUserDataElement. createElement(QName qName)ElementIndexedElement. element(QName qName)List<Element>IndexedElement. elements(QName qName)voidXMLErrorHandler. setErrorQName(QName errorQName)voidXMLErrorHandler. setFatalErrorQName(QName fatalErrorQName)voidXMLErrorHandler. setWarningQName(QName warningQName)Constructors in org.dom4j.util with parameters of type QName Constructor Description IndexedElement(QName qname)IndexedElement(QName qname, int attributeCount)NonLazyElement(QName qname)NonLazyElement(QName qname, int attributeCount)UserDataAttribute(QName qname)UserDataAttribute(QName qname, String text)UserDataElement(QName qname)
-