Uses of Class
org.gbif.api.model.checklistbank.NameUsage
-
Packages that use NameUsage Package Description org.gbif.api.model.checklistbank org.gbif.api.service.checklistbank -
-
Uses of NameUsage in org.gbif.api.model.checklistbank
Subclasses of NameUsage in org.gbif.api.model.checklistbank Modifier and Type Class Description class
NameUsageContainer
An extension to a NameUsage adding all further properties that are not eagerly loaded.Methods in org.gbif.api.model.checklistbank that return types with arguments of type NameUsage Modifier and Type Method Description @NotNull List<NameUsage>
NameUsageContainer. getCombinations()
List<NameUsage>
NameUsageContainer. getSynonyms()
Method parameters in org.gbif.api.model.checklistbank with type arguments of type NameUsage Modifier and Type Method Description void
NameUsageContainer. setCombinations(List<NameUsage> combinations)
void
NameUsageContainer. setSynonyms(List<NameUsage> synonyms)
Constructors in org.gbif.api.model.checklistbank with parameters of type NameUsage Constructor Description NameUsage(NameUsage other)
NameUsageContainer(NameUsage usage)
Constructs a NameUsageContainer from an existing NameUsage instance. -
Uses of NameUsage in org.gbif.api.service.checklistbank
Methods in org.gbif.api.service.checklistbank that return NameUsage Modifier and Type Method Description NameUsage
NameUsageService. get(int taxonKey, Locale locale)
Attempt to find a name usage matching the passed key.Methods in org.gbif.api.service.checklistbank that return types with arguments of type NameUsage Modifier and Type Method Description PagingResponse<NameUsage>
NameUsageService. list(Locale locale, UUID datasetKey, String sourceId, Pageable page)
Page through all usages across all or one checklists.PagingResponse<NameUsage>
NameUsageService. listByCanonicalName(Locale locale, String canonicalName, Pageable page, UUID... datasetKey)
Page through all usages with a given canonical name across all or some checklists.PagingResponse<NameUsage>
NameUsageService. listChildren(int parentKey, Locale locale, Pageable page)
Lists all accepted child name usages for a given parent.List<NameUsage>
NameUsageService. listCombinations(int basionymKey, Locale locale)
Lists all combinations or names at different rank that are based on this basionym, i.e.List<NameUsage>
NameUsageService. listParents(int taxonKey, Locale locale)
Lists the complete parental hierarchy of a name usage regardless of their ranks.PagingResponse<NameUsage>
NameUsageService. listRelated(int taxonKey, Locale locale, Pageable page, UUID... datasetKey)
Lists all related checklist usages for a given nub usage.PagingResponse<NameUsage>
NameUsageService. listRoot(UUID datasetKey, Locale locale, Pageable page)
Lists all root usages for a given checklist, i.e.PagingResponse<NameUsage>
NameUsageService. listSynonyms(int taxonKey, Locale locale, Pageable page)
Lists all synonym name usages for a given accepted name usage.
-