public List<String> getLodSetsNames() { List<String> names = new ArrayList<String>(); for (LODSet l : this.lodSets) { names.add(l.getIdentifier()); } return names; }
public LODSet getLODSet(String identifier) { for (LODSet l : this.lodSets) { if (l.getIdentifier().equalsIgnoreCase(identifier)) { return l; } } return null; }