Java XML Attribute from Node getNodeAttributes(final Node node)

Here you can find the source of getNodeAttributes(final Node node)

Description

get Node Attributes

License

Apache License

Declaration

@SuppressWarnings("unchecked")
    private static Comparable<Object>[] getNodeAttributes(final Node node) 

Method Source Code

//package com.java2s;
/**// w w w . j  a v a2s  .  c  o  m
 *  Copyright 2014 Sven Ewald
 *
 *  Licensed 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;

public class Main {
    @SuppressWarnings("unchecked")
    private static Comparable<Object>[] getNodeAttributes(final Node node) {

        return new Comparable[] { Short.valueOf(node.getNodeType()), node.getNodeName(), node.getLocalName(),
                node.getNamespaceURI(), node.getPrefix(), node.getNodeValue() };
    }
}

Related

  1. getNodeAttribute(Node node, String s)
  2. getNodeAttribute(Node QueryNode, String AttrName)
  3. getNodeAttribute(Node thisNode, String key)
  4. getNodeAttributeAsInt(Node node, String attributeName, int defaultValue)
  5. getNodeAttributeDeep(NodeList nodelList, String nodeName, String nodeAttr)
  6. getNodeAttributesToString(Node node)
  7. getNodeAttributeValue(Node element, String attributeName)
  8. getNodeAttributeValue(Node node, String attribute)
  9. getNodeAttributeValue(Node node, String attributeName)