in core/src/main/java/org/apache/sdap/mudrod/metadata/structure/PODAACMetadata.java [307:330]
public List<String> getAllTermList() {
List<String> allterms = new ArrayList<>();
if (this.termList != null && !this.termList.isEmpty()) {
allterms.addAll(this.termList);
}
if (this.keywordList != null && !this.keywordList.isEmpty()) {
allterms.addAll(this.keywordList);
}
if (this.topicList != null && !this.topicList.isEmpty()) {
allterms.addAll(this.topicList);
}
if (this.variableList != null && !this.variableList.isEmpty()) {
allterms.addAll(this.variableList);
}
if (this.regionList != null && !this.regionList.isEmpty()) {
allterms.addAll(this.regionList);
}
return allterms;
}