MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / toString

Method toString

enums/SpaceShip.java:10–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8 SCOUT, CARGO, TRANSPORT,
9 CRUISER, BATTLESHIP, MOTHERSHIP;
10 @Override public String toString() {
11 String id = name();
12 String lower = id.substring(1).toLowerCase();
13 return id.charAt(0) + lower;
14 }
15 public static void main(String[] args) {
16 Stream.of(values())
17 .forEach(System.out::println);

Callers

nothing calls this directly

Calls 1

nameMethod · 0.65

Tested by

no test coverage detected