Class StringNode
- java.lang.Object
-
- net.florianschoppmann.issuetracking.util.StringNode
-
public final class StringNode extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StringNode
node(String name)
static StringNode
nodeOfNodes(String name, StringNode firstChild, StringNode... otherChildren)
static StringNode
nodeOfStrings(String name, String firstChild, String... otherChildren)
static StringNode
rootOfNodes(StringNode first, StringNode... other)
static StringNode
rootOfStrings(String first, String... other)
String
toString()
String
toStringAsTree(String prefix, String infix, String postfix)
String
toStringFlattened(String childSeparator, String delimiter)
-
-
-
Method Detail
-
rootOfStrings
public static StringNode rootOfStrings(String first, String... other)
-
rootOfNodes
public static StringNode rootOfNodes(StringNode first, StringNode... other)
-
node
public static StringNode node(String name)
-
nodeOfStrings
public static StringNode nodeOfStrings(String name, String firstChild, String... otherChildren)
-
nodeOfNodes
public static StringNode nodeOfNodes(String name, StringNode firstChild, StringNode... otherChildren)
-
-