retail
Enum MovieRating

java.lang.Object
  extended by java.lang.Enum<MovieRating>
      extended by retail.MovieRating
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MovieRating>

public enum MovieRating
extends java.lang.Enum<MovieRating>


Enum Constant Summary
g
           
nc17
           
pg
           
pg13
           
r
           
xxx
           
 
Method Summary
static MovieRating valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MovieRating[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

g

public static final MovieRating g

pg

public static final MovieRating pg

pg13

public static final MovieRating pg13

r

public static final MovieRating r

nc17

public static final MovieRating nc17

xxx

public static final MovieRating xxx
Method Detail

values

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

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

valueOf

public static MovieRating 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