Uses of Class
eu.maveniverse.domtrip.QName
Packages that use QName
-
Uses of QName in eu.maveniverse.domtrip
Methods in eu.maveniverse.domtrip that return QNameModifier and TypeMethodDescriptionstatic QNameCreates a QName for an element with no namespace.static QNameCreates a QName with the specified namespace URI and local name.static QNameCreates a QName with the specified namespace URI, local name, and preferred prefix.static QNameParses a qualified name string into a QName.QName.withNamespaceURI(String newNamespaceURI) Creates a new QName with the same local name and prefix but different namespace URI.QName.withPrefix(String newPrefix) Creates a new QName with the same namespace URI and local name but different prefix.Methods in eu.maveniverse.domtrip with parameters of type QNameModifier and TypeMethodDescriptionEditor.addElement(Element parent, QName qname) Adds a new element using a QName.Editor.addElement(Element parent, QName qname, String textContent) Adds a new element using a QName with text content.Element.childElement(QName qname) Finds the first child element with the given QName.Element.childElements(QName qname) Finds all child elements with the given QName.Element.descendant(QName qname) Finds the first descendant element with the given QName.Element.descendants(QName qname) Finds all descendant elements with the given QName.Creates an element builder using a QName that will be added to the document.booleanChecks if this QName matches the given QName.static AttributeCreates an attribute from a QName and value.static ElementCreates an element from a QName.Finds an element by following a path of QNames from this element.static ElementCreates an element from a QName with text content.Editor.EditorElementBuilder.withAttribute(QName qname, String value) Adds an attribute to this element using a QName.ElementQuery.withAttribute(QName attributeQName) Filters elements that have the specified QName attribute.ElementQuery.withAttribute(QName attributeQName, String attributeValue) Filters elements that have the specified QName attribute with the given value.Filters elements by QName (namespace URI and local name).Method parameters in eu.maveniverse.domtrip with type arguments of type QNameModifier and TypeMethodDescriptionvoidEditor.addQNameElements(Element parent, Map<QName, String> qnameValuePairs) Batch operation to add multiple child elements with text content using QNames.Editor.EditorElementBuilder.withQNameAttributes(Map<QName, String> qnameAttributes) Adds multiple attributes to this element using QNames.