Class TreeUtils


  • public final class TreeUtils
    extends java.lang.Object
    Utility methods.
    Since:
    1.7
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private TreeUtils()
      Prevent creating this class.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      private static void printTree​(java.io.PrintStream stream, java.lang.String indent, ImmutableNode result)  
      static void printTree​(java.io.PrintStream stream, ImmutableNode result)
      Print out the data in the configuration.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TreeUtils

        private TreeUtils()
        Prevent creating this class.
    • Method Detail

      • printTree

        public static void printTree​(java.io.PrintStream stream,
                                     ImmutableNode result)
        Print out the data in the configuration.
        Parameters:
        stream - The OutputStream.
        result - The root node of the tree.
      • printTree

        private static void printTree​(java.io.PrintStream stream,
                                      java.lang.String indent,
                                      ImmutableNode result)