de.umass.lastfm
Enum Period

java.lang.Object
  extended by java.lang.Enum<Period>
      extended by de.umass.lastfm.Period
All Implemented Interfaces:
Serializable, Comparable<Period>

public enum Period
extends Enum<Period>

Author:
Janni Kovacs

Enum Constant Summary
OVERALL
           
SIX_MONTHS
           
THREE_MONTHS
           
TWELVE_MONTHS
           
 
Method Summary
 String getString()
           
static Period valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Period[] 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

OVERALL

public static final Period OVERALL

THREE_MONTHS

public static final Period THREE_MONTHS

SIX_MONTHS

public static final Period SIX_MONTHS

TWELVE_MONTHS

public static final Period TWELVE_MONTHS
Method Detail

values

public static Period[] 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 (Period c : Period.values())
    System.out.println(c);

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

valueOf

public static Period valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getString

public String getString()