Uses of Class
edu.uci.ics.inf111.dvdvendor.app.Utils.genre

Packages that use Utils.genre
edu.uci.ics.inf111.dvdvendor.app   
 

Uses of Utils.genre in edu.uci.ics.inf111.dvdvendor.app
 

Fields in edu.uci.ics.inf111.dvdvendor.app declared as Utils.genre
private  Utils.genre[] DVD.genre
          The genre for this DVD.
 

Methods in edu.uci.ics.inf111.dvdvendor.app that return Utils.genre
 Utils.genre[] DVD.getGenre()
          An accessor method which returns the array of genres for the DVD.
static Utils.genre Utils.genre.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Utils.genre[] Utils.genre.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in edu.uci.ics.inf111.dvdvendor.app with parameters of type Utils.genre
 void DVD.setGenre(Utils.genre[] genre)
          An accessor method which sets array of genres for the DVD.
 

Constructors in edu.uci.ics.inf111.dvdvendor.app with parameters of type Utils.genre
DVD(BarCode barCode, java.lang.String title, double price, java.lang.String plot, Utils.genre[] genre, java.lang.String runningTime, java.lang.String starring)
          This constructor stores all relevant details of the product, which can be retrieved using accessor methods.