org.apache.solr.common.util
Class DOMUtil

java.lang.Object
  extended by org.apache.solr.common.util.DOMUtil
Direct Known Subclasses:
DOMUtil

public class DOMUtil
extends Object

Version:
$Id: DOMUtil.java 765199 2009-04-15 13:47:58Z koji $

Constructor Summary
DOMUtil()
           
 
Method Summary
static void addToNamedList(Node nd, NamedList nlst, List arr)
           
static List childNodesToList(Node nd)
           
static NamedList<Object> childNodesToNamedList(Node nd)
           
static String getAttr(NamedNodeMap attrs, String name)
           
static String getAttr(NamedNodeMap attrs, String name, String missing_err)
           
static String getAttr(Node nd, String name)
           
static String getAttr(Node node, String name, String missing_err)
           
static Node getChild(Node node, String name)
           
static String getText(Node nd)
          Drop in replacement for Node.getTextContent().
static List nodesToList(NodeList nlst)
           
static NamedList<Object> nodesToNamedList(NodeList nlst)
           
static void substituteProperties(Node node, Properties properties)
          Replaces ${property[:default value]} references in all attributes and text nodes of supplied node.
static void substituteSystemProperties(Node node)
          Replaces ${system.property[:default value]} references in all attributes and text nodes of supplied node.
static Map<String,String> toMap(NamedNodeMap attrs)
           
static Map<String,String> toMapExcept(NamedNodeMap attrs, String... exclusions)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DOMUtil

public DOMUtil()
Method Detail

toMap

public static Map<String,String> toMap(NamedNodeMap attrs)

toMapExcept

public static Map<String,String> toMapExcept(NamedNodeMap attrs,
                                             String... exclusions)

getChild

public static Node getChild(Node node,
                            String name)

getAttr

public static String getAttr(NamedNodeMap attrs,
                             String name)

getAttr

public static String getAttr(Node nd,
                             String name)

getAttr

public static String getAttr(NamedNodeMap attrs,
                             String name,
                             String missing_err)

getAttr

public static String getAttr(Node node,
                             String name,
                             String missing_err)

childNodesToNamedList

public static NamedList<Object> childNodesToNamedList(Node nd)

childNodesToList

public static List childNodesToList(Node nd)

nodesToNamedList

public static NamedList<Object> nodesToNamedList(NodeList nlst)

nodesToList

public static List nodesToList(NodeList nlst)

addToNamedList

public static void addToNamedList(Node nd,
                                  NamedList nlst,
                                  List arr)

getText

public static String getText(Node nd)
Drop in replacement for Node.getTextContent().

This method is provided to support the same functionality as Node.getTextContent() but in a way that is DOM Level 2 compatible.

See Also:
DOM Object Model Core

substituteSystemProperties

public static void substituteSystemProperties(Node node)
Replaces ${system.property[:default value]} references in all attributes and text nodes of supplied node. If the system property is not defined and no default value is provided, a runtime exception is thrown.

Parameters:
node - DOM node to walk for substitutions

substituteProperties

public static void substituteProperties(Node node,
                                        Properties properties)
Replaces ${property[:default value]} references in all attributes and text nodes of supplied node. If the property is not defined neither in the given Properties instance nor in System.getProperty and no default value is provided, a runtime exception is thrown.

Parameters:
node - DOM node to walk for substitutions
properties - the Properties instance from which a value can be looked up


Copyright © 2009 Apache Software Foundation. All Rights Reserved.