MCPcopy
hub / github.com/google/guava / toString

Method toString

guava/src/com/google/common/collect/Range.java:681–684  ·  view source on GitHub ↗

Returns a string representation of this range, such as {@code "[3..5)"} (other examples are listed in the class documentation).

()

Source from the content-addressed store, hash-verified

679 * listed in the class documentation).
680 */
681 @Override
682 public String toString() {
683 return toString(lowerBound, upperBound);
684 }
685
686 private static String toString(Cut<?> lowerBound, Cut<?> upperBound) {
687 StringBuilder sb = new StringBuilder(16);

Callers 1

RangeMethod · 0.95

Calls 4

toStringMethod · 0.65
describeAsLowerBoundMethod · 0.45
appendMethod · 0.45
describeAsUpperBoundMethod · 0.45

Tested by

no test coverage detected