OnJava8-Examples/enums/SpaceShip.java

28 lines
626 B
Java
Raw Permalink Normal View History

2015-09-07 11:44:36 -06:00
// enums/SpaceShip.java
// (c)2021 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2015-12-02 09:20:27 -08:00
import java.util.stream.*;
2015-06-15 17:47:35 -07:00
public enum SpaceShip {
2016-01-25 18:05:55 -08:00
SCOUT, CARGO, TRANSPORT,
CRUISER, BATTLESHIP, MOTHERSHIP;
@Override public String toString() {
2015-06-15 17:47:35 -07:00
String id = name();
String lower = id.substring(1).toLowerCase();
return id.charAt(0) + lower;
}
public static void main(String[] args) {
2017-01-20 21:30:44 -08:00
Stream.of(values())
.forEach(System.out::println);
2015-06-15 17:47:35 -07:00
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Scout
Cargo
Transport
Cruiser
Battleship
Mothership
2015-09-07 11:44:36 -06:00
*/