All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.io.XMLNodeExtractor Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util.io;

import com.spun.util.StringUtils;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

import java.util.HashMap;

public interface XMLNodeExtractor
{
  public void extractProperty(Node node, HashMap properties);
  /*               INNER CLASS                                            */
  public static class Utils
  {
    public static boolean extractSingleton(Node node, HashMap properties)
    {
      String name = node.getNodeName();
      NodeList childNodes = node.getChildNodes();
      if ((childNodes.getLength() == 1) && (childNodes.item(0).getChildNodes().getLength() == 0))
      {
        properties.put(name, StringUtils.loadNullableString(childNodes.item(0).getNodeValue()));
        return true;
      }
      return false;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy