Java XML QName nodeToQName(Node node)

Here you can find the source of nodeToQName(Node node)

Description

node To Q Name

License

Open Source License

Declaration

public static QName nodeToQName(Node node) 

Method Source Code

//package com.java2s;
/**//w  ww . ja  va2s  .c om
 * Copyright (c) 2012 centeractive ag. All Rights Reserved.
 *
 * 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 org.w3c.dom.Node;
import javax.xml.namespace.QName;

public class Main {
    public static QName nodeToQName(Node node) {
        return new QName(node.getNamespaceURI(), node.getLocalName());
    }
}

Related

  1. matches(QName qname, Node node)
  2. matchingNamespace(Node node, QName requiredNamespace)
  3. matchNode(Node node, QName name)
  4. moveReaderToTag(XMLStreamReader reader, QName... tags)
  5. namedNode(QName qname)
  6. parseXml(final Node node, final Map properties)
  7. printPath(List path)
  8. read(Node node, String expression, QName returnType)
  9. readTextElement(XMLEventReader reader, QName elemName)