Uses of Class
ejava.jpa.examples.tuning.bo.MovieRating
-
Packages that use MovieRating Package Description ejava.jpa.examples.tuning.bo ejava.jpa.examples.tuning.dao -
-
Uses of MovieRating in ejava.jpa.examples.tuning.bo
Fields in ejava.jpa.examples.tuning.bo declared as MovieRating Modifier and Type Field Description private MovieRating
Movie. mrating
Methods in ejava.jpa.examples.tuning.bo that return MovieRating Modifier and Type Method 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.Methods in ejava.jpa.examples.tuning.bo with parameters of type MovieRating Modifier and Type Method Description Movie
Movie. setRating(MovieRating rating)
-
Uses of MovieRating in ejava.jpa.examples.tuning.dao
Methods in ejava.jpa.examples.tuning.dao with parameters of type MovieRating Modifier and Type Method 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.
-