
Sun Services
Java™ Programming Language
Module 7, slide 19 of 44
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
The New Enumerated Type
Now you can create type-safe enumerated types:
1 package cards.domain;
2
3 public enum Suit {
4 SPADES,
5 HEARTS,
6 CLUBS,
7 DIAMONDS
8}