33 lines
1.2 KiB
Java
33 lines
1.2 KiB
Java
// enums/OzWitch.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
|
// The witches in the land of Oz
|
|
|
|
public enum OzWitch {
|
|
// Instances must be defined first, before methods:
|
|
WEST("Miss Gulch, aka the Wicked Witch of the West"),
|
|
NORTH("Glinda, the Good Witch of the North"),
|
|
EAST("Wicked Witch of the East, wearer of the Ruby " +
|
|
"Slippers, crushed by Dorothy's house"),
|
|
SOUTH("Good by inference, but missing");
|
|
private String description;
|
|
// Constructor must be package or private access:
|
|
private OzWitch(String description) {
|
|
this.description = description;
|
|
}
|
|
public String getDescription() { return description; }
|
|
public static void main(String[] args) {
|
|
for(OzWitch witch : OzWitch.values())
|
|
System.out.println(
|
|
witch + ": " + witch.getDescription());
|
|
}
|
|
}
|
|
/* Output:
|
|
WEST: Miss Gulch, aka the Wicked Witch of the West
|
|
NORTH: Glinda, the Good Witch of the North
|
|
EAST: Wicked Witch of the East, wearer of the Ruby
|
|
Slippers, crushed by Dorothy's house
|
|
SOUTH: Good by inference, but missing
|
|
*/
|