Uses of Enum Class
com.tfg.crud.GestorBiblioteca.entity.EstadoPrestamo
Packages that use EstadoPrestamo
Package
Description
-
Uses of EstadoPrestamo in com.tfg.crud.GestorBiblioteca.controller
Methods in com.tfg.crud.GestorBiblioteca.controller with parameters of type EstadoPrestamoModifier and TypeMethodDescriptionmtoPrestamoController.mostrarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable, org.springframework.ui.Model model) Muestra el listado de préstamos con opciones de búsqueda, filtrado y paginación. -
Uses of EstadoPrestamo in com.tfg.crud.GestorBiblioteca.entity
Methods in com.tfg.crud.GestorBiblioteca.entity that return EstadoPrestamoModifier and TypeMethodDescriptionPrestamo.getEstadoPrestamo()static EstadoPrestamoReturns the enum constant of this class with the specified name.static EstadoPrestamo[]EstadoPrestamo.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.tfg.crud.GestorBiblioteca.entity with parameters of type EstadoPrestamoConstructors in com.tfg.crud.GestorBiblioteca.entity with parameters of type EstadoPrestamoModifierConstructorDescriptionPrestamo(Long idPrestamo, LocalDate fechaInicio, LocalDate fechaFin, LocalDate fechaDevolucion, Usuario usuario, Ejemplar ejemplar, EstadoPrestamo estadoPrestamo) Prestamo(LocalDate fechaInicio, LocalDate fechaFin, LocalDate fechaDevolucion, Usuario usuario, Ejemplar ejemplar, EstadoPrestamo estadoPrestamo) -
Uses of EstadoPrestamo in com.tfg.crud.GestorBiblioteca.repository
Methods in com.tfg.crud.GestorBiblioteca.repository with parameters of type EstadoPrestamoModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Prestamo> PrestamoRepository.buscarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable) Method parameters in com.tfg.crud.GestorBiblioteca.repository with type arguments of type EstadoPrestamoModifier and TypeMethodDescriptionPrestamoRepository.countByEstadoPrestamoIn(List<EstadoPrestamo> estados) -
Uses of EstadoPrestamo in com.tfg.crud.GestorBiblioteca.service
Methods in com.tfg.crud.GestorBiblioteca.service with parameters of type EstadoPrestamoModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Prestamo> PrestamoService.buscarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable) Busca préstamos aplicando filtros y paginaciónorg.springframework.data.domain.Page<Prestamo> PrestamoServiceImp.buscarPrestamos(String busqueda, EstadoPrestamo estadoPrestamo, org.springframework.data.domain.Pageable pageable) voidPrestamoService.cambiarEstado(Long idPrestamo, EstadoPrestamo estadoPrestamo) Cambia el estado de un préstamo.voidPrestamoServiceImp.cambiarEstado(Long idPrestamo, EstadoPrestamo estadoPrestamo)