Class LookupResult
- java.lang.Object
-
- org.gbif.api.model.collections.lookup.LookupResult
-
public class LookupResult extends Object
Result of a collections lookup that contains the institution and collections matches found.
-
-
Constructor Summary
Constructors Constructor Description LookupResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AlternativeMatches
getAlternativeMatches()
Match<CollectionMatched>
getCollectionMatch()
Match<InstitutionMatched>
getInstitutionMatch()
void
setAlternativeMatches(AlternativeMatches alternativeMatches)
void
setCollectionMatch(Match<CollectionMatched> collectionMatch)
void
setInstitutionMatch(Match<InstitutionMatched> institutionMatch)
-
-
-
Constructor Detail
-
LookupResult
public LookupResult()
-
-
Method Detail
-
getInstitutionMatch
public Match<InstitutionMatched> getInstitutionMatch()
-
setInstitutionMatch
public void setInstitutionMatch(Match<InstitutionMatched> institutionMatch)
-
getCollectionMatch
public Match<CollectionMatched> getCollectionMatch()
-
setCollectionMatch
public void setCollectionMatch(Match<CollectionMatched> collectionMatch)
-
getAlternativeMatches
public AlternativeMatches getAlternativeMatches()
-
setAlternativeMatches
public void setAlternativeMatches(AlternativeMatches alternativeMatches)
-
-