MCPcopy Create free account
hub / github.com/antlr/codebuff / toString

Method toString

output/java_guava/1.4.18/Range.java:692–695  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

690 */
691
692 @Override
693 public String toString() {
694 return toString(lowerBound, upperBound);
695 }
696
697 private static String toString(Cut<?> lowerBound, Cut<?> upperBound) {
698 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