Uses of Enum Class
org.gbif.api.model.occurrence.Download.Status
Packages that use Download.Status
-
Uses of Download.Status in org.gbif.api.model.occurrence
Fields in org.gbif.api.model.occurrence with type parameters of type Download.StatusModifier and TypeFieldDescriptionstatic final EnumSet<Download.Status>
Download.Status.EXECUTING_STATUSES
Statuses that represent a download that that hasn't finished.static final EnumSet<Download.Status>
Download.Status.FINISH_STATUSES
Statuses that represent a download that that has finished.Methods in org.gbif.api.model.occurrence that return Download.StatusModifier and TypeMethodDescription@NotNull Download.Status
Download.getStatus()
static Download.Status
Returns the enum constant of this class with the specified name.static Download.Status[]
Download.Status.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.gbif.api.model.occurrence with parameters of type Download.Status -
Uses of Download.Status in org.gbif.api.service.registry
Method parameters in org.gbif.api.service.registry with type arguments of type Download.StatusModifier and TypeMethodDescriptionlong
OccurrenceDownloadService.count
(Set<Download.Status> status, String source) Counts downloads based on the given parameters.long
OccurrenceDownloadService.countByUser
(@NotNull String user, Set<Download.Status> status, LocalDateTime from) Counts the downloads created by a user.OccurrenceDownloadService.list
(Pageable page, Set<Download.Status> status, String source) Retrieves a pageable result of all the downloads, optionally the downloads can be filtered by status and source.OccurrenceDownloadService.listByUser
(@NotNull String user, Pageable page, Set<Download.Status> status, LocalDateTime from, Boolean statistics) Retrieves a pageable result of the downloads created by a user in a given status.