algorithms-sandbox/datastructures/java/src/be/brainbaking/datastructures/trees/NodeSplitResult.java

21 lines
408 B
Java
Raw Normal View History

2018-04-03 15:50:57 +02:00
package be.brainbaking.datastructures.trees;
public class NodeSplitResult {
private final Node newNode;
private final String splitKey;
public Node getNewNode() {
return newNode;
}
public String getSplitKey() {
return splitKey;
}
public NodeSplitResult(Node newNode, String splitKey) {
this.newNode = newNode;
this.splitKey = splitKey;
}
}