getValue
This commit is contained in:
@ -82,4 +82,8 @@ public class Node {
|
|||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(this.name, this.value, this.children); // TODO: children?
|
return Objects.hash(this.name, this.value, this.children); // TODO: children?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getValue() {
|
||||||
|
return this.value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user