Searched defs:BstModificationResult (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DBstModificationResult.java29 final class BstModificationResult<N extends BstNode<?, N>> { class
34 static <N extends BstNode<?, N>> BstModificationResult<N> identity(@Nullable N target) {
35 return new BstModificationResult<N>(target, target, ModificationType.IDENTITY);
38 static <N extends BstNode<?, N>> BstModificationResult<N> rebuildingChange(
40 return new BstModificationResult<N>(
44 static <N extends BstNode<?, N>> BstModificationResult<N> rebalancingChange(
46 return new BstModificationResult<N>(
54 private BstModificationResult( method in class:BstModificationResult

Completed in 143 milliseconds