pOther
instanceof QName
getNamespaceURI().equals(pOther.getNamespaceURI())
getLocalPart().equals(pOther.getLocalPart())
Note: The prefix is ignored.QName
.QName
's hash code.NamespaceContext
interface is a helper tool for
XML parsing applications which need to know the mappings between XML
namespace prefixes and namespace URI's.QName
is a qualified name, as specified by
XML Schema Part2: Datatypes specification, Namespaces in XML, Namespaces in XML Errata.QName
with the given
pNamespaceURI
and pLocalPart
.QName
with the given
pNamespaceURI
, pLocalPart
, and
pPrefix
.QName
with the given
pLocalPart
, the namespace URI "" (empty string),
and the prefix "" (empty string).pQName
.Copyright © 2005-2013 Apache Software Foundation. All Rights Reserved.