Uses of Interface
dk.netarkivet.common.utils.StringTree

Packages that use StringTree
dk.netarkivet.common.utils   
 

Uses of StringTree in dk.netarkivet.common.utils
 

Classes in dk.netarkivet.common.utils that implement StringTree
 class XmlTree<T>
          A class that implements the StringTree interface by backing it with XML.
 

Methods in dk.netarkivet.common.utils that return StringTree
static StringTree<java.lang.String> XmlTree.getStringTree(org.dom4j.Node n)
          Returns a StringTree<String> view of the given XML node.
 StringTree<T> StringTree.getSubTree(java.lang.String name)
          Get the only subtree with the given name.
 StringTree<T> XmlTree.getSubTree(java.lang.String name)
          Get the only subtree with the given name.
 StringTree<java.lang.String> SimpleXml.getTree(java.lang.String path)
          Return a tree structure reflecting the XML and trimmed values.
static StringTree<java.lang.String> Settings.getTree(java.lang.String path)
          Get a tree view of a part of the settings.
 

Methods in dk.netarkivet.common.utils that return types with arguments of type StringTree
 java.util.Map<java.lang.String,StringTree<T>> StringTree.getChildMap()
          Get a map of all direct subtrees, assuming that all subtrees are uniquely named.
 java.util.Map<java.lang.String,StringTree<T>> XmlTree.getChildMap()
          Get a map of all direct subtrees, assuming that all subtrees are uniquely named.
 java.util.Map<java.lang.String,java.util.List<StringTree<T>>> StringTree.getChildMultimap()
          Get a map of all direct children of this node.
 java.util.Map<java.lang.String,java.util.List<StringTree<T>>> XmlTree.getChildMultimap()
          Get a map of all the children of this node.
 java.util.List<StringTree<T>> StringTree.getSubTrees(java.lang.String name)
          Get the named subtrees.
 java.util.List<StringTree<T>> XmlTree.getSubTrees(java.lang.String name)
          Get the named subtrees.