Uses of Class
ejava.examples.daoex.bo.Book
-
Packages that use Book Package Description ejava.examples.daoex.bo ejava.examples.daoex.dao -
-
Uses of Book in ejava.examples.daoex.bo
Fields in ejava.examples.daoex.bo with type parameters of type Book Modifier and Type Field Description private List<Book>Author. booksMethods in ejava.examples.daoex.bo that return types with arguments of type Book Modifier and Type Method Description List<Book>Author. getBooks()Method parameters in ejava.examples.daoex.bo with type arguments of type Book Modifier and Type Method Description voidAuthor. setBooks(List<Book> books) -
Uses of Book in ejava.examples.daoex.dao
Methods in ejava.examples.daoex.dao that return Book Modifier and Type Method Description BookBookDAO. create(Book book)Add the book to the database.BookJDBCBookDAOImpl. create(Book book)BookJPABookDAOImpl. create(Book book)BookJPANativeSQLBookDAO. create(Book book)BookBookDAO. get(long id)Gets a book from the database by its ID.BookJDBCBookDAOImpl. get(long id)BookJPABookDAOImpl. get(long id)BookJPANativeSQLBookDAO. get(long id)BookBookDAO. update(Book book)Updates the book in the database with the values in this object.BookJDBCBookDAOImpl. update(Book book)BookJPABookDAOImpl. update(Book book)BookJPANativeSQLBookDAO. update(Book book)Methods in ejava.examples.daoex.dao that return types with arguments of type Book Modifier and Type Method Description List<Book>BookDAO. findAll(int start, int count)Returns a collection of books, starting at the index provided and limiting the collection to the count value.List<Book>JDBCBookDAOImpl. findAll(int start, int count)List<Book>JPABookDAOImpl. findAll(int offset, int limit)List<Book>JPANativeSQLBookDAO. findAll(int start, int count)Methods in ejava.examples.daoex.dao with parameters of type Book Modifier and Type Method Description BookBookDAO. create(Book book)Add the book to the database.BookJDBCBookDAOImpl. create(Book book)BookJPABookDAOImpl. create(Book book)BookJPANativeSQLBookDAO. create(Book book)private PreparedStatementJDBCBookDAOImpl. getInsertPreparedStatement(Connection c, Book book)voidBookDAO. remove(Book book)Removes a book from the database.voidJDBCBookDAOImpl. remove(Book book)voidJPABookDAOImpl. remove(Book book)voidJPANativeSQLBookDAO. remove(Book book)BookBookDAO. update(Book book)Updates the book in the database with the values in this object.BookJDBCBookDAOImpl. update(Book book)BookJPABookDAOImpl. update(Book book)BookJPANativeSQLBookDAO. update(Book book)
-