use of org.hl7.fhir.r4.utils.IntegrityChecker.SearchParameterNodeSorter in project org.hl7.fhir.core by hapifhir.
the class IntegrityChecker method sort.
private List<SearchParameterNode> sort(Collection<SearchParameterNode> values) {
List<SearchParameterNode> res = new ArrayList<>();
res.addAll(values);
Collections.sort(res, new SearchParameterNodeSorter());
return res;
}
use of org.hl7.fhir.r4.utils.IntegrityChecker.SearchParameterNodeSorter in project org.hl7.fhir.core by hapifhir.
the class IntegrityChecker method sort.
private List<SearchParameterNode> sort(Collection<SearchParameterNode> values) {
List<SearchParameterNode> res = new ArrayList<>();
res.addAll(values);
Collections.sort(res, new SearchParameterNodeSorter());
return res;
}
Aggregations