| Package | Description | 
|---|---|
| ejava.jpa.examples.tuning.bo | |
| ejava.jpa.examples.tuning.dao | 
| Modifier and Type | Field and Description | 
|---|---|
private MovieRating | 
Movie.mrating  | 
| Modifier and Type | Method and Description | 
|---|---|
static MovieRating | 
MovieRating.getFromMpaa(String mpaa)  | 
MovieRating | 
Movie.getRating()  | 
static MovieRating | 
MovieRating.valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static MovieRating[] | 
MovieRating.values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Movie | 
Movie.setRating(MovieRating rating)  | 
| Modifier and Type | Method and Description | 
|---|---|
List<Movie> | 
MovieDAOImpl.getMoviesByRatingLowerFunction(MovieRating rating,
                              Integer offset,
                              Integer limit)
Returns an unordered page of movies matching the supplied rating -- but
 calling lower() on the DB value. 
 | 
List<Movie> | 
MovieDAOImpl.getMoviesByRatingUpperFunction(MovieRating rating,
                              Integer offset,
                              Integer limit)
Returns an unordered page of movies matching the supplied rating -- but
 calling upper() on the DB value. 
 | 
List<Movie> | 
MovieDAOImpl.getMoviesByRatingValue(MovieRating rating,
                      Integer offset,
                      Integer limit,
                      String orderBy)
Returns an unordered page of movies matching the supplied rating --
 without calling any function()s on the stored data. 
 | 
List<Movie> | 
MovieDAOImpl.getMoviesByReleaseDateAndRating(Date releaseDate,
                               MovieRating rating,
                               Integer offset,
                               Integer limit)  | 
List<Movie> | 
MovieDAOImpl.getMoviesByTitleAndReleaseDateAndRating(String title,
                                       Date releaseDate,
                                       MovieRating rating,
                                       Integer offset,
                                       Integer limit)  | 
List<String> | 
MovieDAOImpl.getTitlesByRating(MovieRating rating,
                 Integer offset,
                 Integer limit)
Returns an unordered page of titles that match a specified rating. 
 | 
Copyright © 2015 John's Hopkins University, Engineering Programs for Professionals. All rights reserved.