doc.walkthru
Enum Album.Format

java.lang.Object
  extended by java.lang.Enum<Album.Format>
      extended by doc.walkthru.Album.Format
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Album.Format>
Enclosing interface:
Album

public static enum Album.Format
extends java.lang.Enum<Album.Format>

formats for albums


Enum Constant Summary
CD
           
DIGITAL_COMPRESSED
           
DIGITAL_LOSSLESS
           
EIGHT_TRACK
           
FORTY_FIVE
           
TWELVE_INCH
           
WAX_CYLINDER
           
 
Method Summary
static Album.Format valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Album.Format[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DIGITAL_LOSSLESS

public static final Album.Format DIGITAL_LOSSLESS

DIGITAL_COMPRESSED

public static final Album.Format DIGITAL_COMPRESSED

CD

public static final Album.Format CD

TWELVE_INCH

public static final Album.Format TWELVE_INCH

FORTY_FIVE

public static final Album.Format FORTY_FIVE

EIGHT_TRACK

public static final Album.Format EIGHT_TRACK

WAX_CYLINDER

public static final Album.Format WAX_CYLINDER
Method Detail

values

public static Album.Format[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Album.Format c : Album.Format.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Album.Format valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null