public class HashNode extends Object implements Node
| Modifier and Type | Field and Description |
|---|---|
protected List<Node> |
children |
protected String |
hash |
| Constructor and Description |
|---|
HashNode() |
HashNode(List<Node> children) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
List<Node> |
getChildren()
Accessor for the children that this Node's hash is comprised of
|
String |
getHash()
If this node has children, aggregates the hashes of the children.
|
int |
hashCode() |
String |
toString() |
public List<Node> getChildren()
getChildren in interface Nodepublic String getHash()
Copyright © 2017 Calrissian. All rights reserved.