public interface HeiEntry
Note, that the EWP Registry keeps only the very import attributes of each HEI (identifiers and name). If you are looking for more information on HEIs, then you should make use of the Institutions API.
| Modifier and Type | Method and Description |
|---|---|
String |
getId() |
String |
getName()
Get the name of this HEI.
|
String |
getName(String langCode)
Get a name in the given language, or
null. |
String |
getNameEnglish()
Get the English name of this HEI, or
null. |
String |
getNameNonEnglish()
Get a non-English name of this HEI, or
null. |
Collection<String> |
getOtherIds(String type)
Retrieve all
<other-id> values of certain type. |
String getId()
String getName()
null here.String getName(String langCode)
null.
Please note, that this operates on exact BCP 47 language tag values. This means that, for example, if the HEI name was described with "ru-Latn" xml:lang, then (currently) you won't retrieve this name by asking for "ru". This behavior MAY change in the future (we will probably consider it a backward-compatible change).
langCode - BCP 47 language tag (e.g. "en" or "ru-Latn").null (if it wasn't).String getNameEnglish()
null.null (this differs from the behavior of getName()).String getNameNonEnglish()
null.null will be returned.Collection<String> getOtherIds(String type)
<other-id> values of certain type.type - type identifier, see RegistryClient.findHei(String, String) for more
information on these types.Copyright © 2017. All rights reserved.