Class XmlElementName


  • public class XmlElementName
    extends java.lang.Object
    Data structure used to encapsulate the different pieces of information that make up the name of an XML element - namely, the Namespace URI, the local name, and the qname (qualified name).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String localName  
      java.lang.String nsUri  
      java.lang.String qName  
    • Constructor Summary

      Constructors 
      Constructor Description
      XmlElementName​(java.lang.String nsUri, java.lang.String localName, java.lang.String qName)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • nsUri

        public java.lang.String nsUri
      • localName

        public java.lang.String localName
      • qName

        public java.lang.String qName
    • Constructor Detail

      • XmlElementName

        public XmlElementName​(java.lang.String nsUri,
                              java.lang.String localName,
                              java.lang.String qName)