Uses of Class
org.gbif.api.vocabulary.DatasetType
-
Packages that use DatasetType Package Description org.gbif.api.model.registry org.gbif.api.model.registry.search org.gbif.api.service.registry org.gbif.api.util.iterables org.gbif.api.vocabulary -
-
Uses of DatasetType in org.gbif.api.model.registry
Methods in org.gbif.api.model.registry that return DatasetType Modifier and Type Method Description @NotNull DatasetType
Dataset. getType()
Methods in org.gbif.api.model.registry with parameters of type DatasetType Modifier and Type Method Description void
Dataset. setType(DatasetType type)
Persisted in the database table. -
Uses of DatasetType in org.gbif.api.model.registry.search
Methods in org.gbif.api.model.registry.search that return DatasetType Modifier and Type Method Description DatasetType
DatasetSearchResult. getType()
DatasetType
DatasetSuggestResult. getType()
Methods in org.gbif.api.model.registry.search with parameters of type DatasetType Modifier and Type Method Description void
DatasetSearchRequest. addTypeFilter(DatasetType type)
void
DatasetSearchResult. setType(DatasetType type)
void
DatasetSuggestResult. setType(DatasetType type)
-
Uses of DatasetType in org.gbif.api.service.registry
Methods in org.gbif.api.service.registry with parameters of type DatasetType Modifier and Type Method Description PagingResponse<Dataset>
DatasetService. listByCountry(Country country, DatasetType type, Pageable page)
Provides paging service to list datasets published, i.e.PagingResponse<Dataset>
DatasetService. listByType(DatasetType type, Pageable page)
Provides paging service to list datasets published filtered by a particular dataset type. -
Uses of DatasetType in org.gbif.api.util.iterables
Methods in org.gbif.api.util.iterables with parameters of type DatasetType Modifier and Type Method Description static Iterable<Dataset>
Iterables. datasets(UUID key, DatasetType type, DatasetService ds, OrganizationService os, InstallationService is, NetworkService ns, NodeService nos)
static Iterable<Dataset>
Iterables. datasets(UUID key, DatasetType type, DatasetService ds, OrganizationService os, InstallationService is, NetworkService ns, NodeService nos, int pageSize)
Returns a dataset iterable by testing the given registry key first to see whether it is a dataset, organization or installation.static Iterable<Dataset>
Iterables. datasets(DatasetType type, DatasetService service)
static Iterable<Dataset>
Iterables. endorsedDatasets(UUID nodeKey, DatasetType type, NodeService service)
static Iterable<Dataset>
Iterables. hostedDatasets(UUID key, DatasetType type, InstallationService service)
static Iterable<Dataset>
Iterables. hostedDatasets(UUID key, DatasetType type, OrganizationService service)
static Iterable<Dataset>
Iterables. networkDatasets(UUID key, DatasetType type, NetworkService service)
Iterates over all constituents of a given network.static Iterable<Dataset>
Iterables. publishedDatasets(UUID key, DatasetType type, OrganizationService service)
Constructors in org.gbif.api.util.iterables with parameters of type DatasetType Constructor Description DatasetPager(DatasetService ds, DatasetType type, int pageSize)
InstallationPager(InstallationService service, UUID installationKey, DatasetType type, int pageSize)
NetworkPager(NetworkService service, UUID key, DatasetType type, int pageSize)
NodeDatasetPager(NodeService service, UUID nodeKey, DatasetType type, int pageSize)
OrgHostingPager(OrganizationService os, UUID orgKey, DatasetType type, int pageSize)
OrgPublishingPager(OrganizationService os, UUID orgKey, DatasetType type, int pageSize)
-
Uses of DatasetType in org.gbif.api.vocabulary
Methods in org.gbif.api.vocabulary that return DatasetType Modifier and Type Method Description static DatasetType
DatasetType. fromString(String datasetType)
static DatasetType
DatasetType. valueOf(String name)
Returns the enum constant of this type with the specified name.static DatasetType[]
DatasetType. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-