Java XML QName Get getQName(Element el)

Here you can find the source of getQName(Element el)

Description

Build a QName from the element name

License

Apache License

Parameter

Parameter Description
el a parameter

Declaration

public static QName getQName(Element el) 

Method Source Code

//package com.java2s;
/*/*w ww.  j a  v  a 2 s  .com*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.xml.namespace.QName;

import org.w3c.dom.Element;

public class Main {
    /**
     * Build a QName from the element name
     * @param el
     * @return
     */
    public static QName getQName(Element el) {
        if (el == null) {
            return null;
        } else if (el.getNamespaceURI() == null) {
            return new QName(el.getNodeName());
        } else if (el.getPrefix() != null) {
            return new QName(el.getNamespaceURI(), el.getLocalName(), el.getPrefix());
        } else {
            return new QName(el.getNamespaceURI(), el.getLocalName());
        }
    }
}

Related

  1. getElements(Node context, QName qname)
  2. getName(QName qName)
  3. getName(QName qname)
  4. getQName(@Nonnull final Element aElement)
  5. getQName(Class klass)
  6. getQName(Element xml)
  7. getQName(final String name)
  8. getQName(Node n)
  9. getQName(Node node)