Class TreeLayout.DumpConfiguration
java.lang.Object
com.refinedmods.refinedstorage.common.repackage.org.abego.treelayout.TreeLayout.DumpConfiguration
- Enclosing class:
TreeLayout<TreeNode>
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal boolean
When true the dump also includes the size of each node, otherwise not.final boolean
When true, the text as returned byObject.toString()
, is included in the dump, in addition to the text returned by the possibly overridden toString method of the node.final String
The text used to indent the output per level. -
Constructor Summary
ConstructorsConstructorDescriptionDumpConfiguration
(String indent, boolean includeNodeSize, boolean includePointer) -
Method Summary
-
Field Details
-
indent
The text used to indent the output per level. -
includeNodeSize
public final boolean includeNodeSizeWhen true the dump also includes the size of each node, otherwise not. -
includeObjectToString
public final boolean includeObjectToStringWhen true, the text as returned byObject.toString()
, is included in the dump, in addition to the text returned by the possibly overridden toString method of the node. When the hashCode method is overridden the output will also include the "identityHashCode".
-
-
Constructor Details
-
DumpConfiguration
- Parameters:
indent
- [default: " "]includeNodeSize
- [default: false]includePointer
- [default: false]
-
DumpConfiguration
public DumpConfiguration()
-