
org.citygml4j.cityjson.adapter.geometry.builder.TemplateInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citygml4j-cityjson Show documentation
Show all versions of citygml4j-cityjson Show documentation
The Open Source Java API for CityGML
/*
* citygml4j - The Open Source Java API for CityGML
* https://github.com/citygml4j
*
* Copyright 2013-2025 Claus Nagel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.citygml4j.cityjson.adapter.geometry.builder;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
import org.citygml4j.cityjson.adapter.appearance.builder.AppearanceInfo;
import org.citygml4j.core.model.appearance.Appearance;
import java.util.*;
public class TemplateInfo {
private final ArrayNode templates;
private Map references;
private Map> localAppearances;
private AppearanceInfo appearanceInfo;
TemplateInfo(ArrayNode templates) {
this.templates = templates;
}
JsonNode getTemplate(int index) {
return templates.path(index);
}
String getReference(int index) {
return references != null ? references.get(index) : null;
}
void addReference(int index, String reference) {
if (references == null) {
references = new HashMap<>();
}
references.put(index, reference);
}
Set getLocalAppearances(String reference) {
return localAppearances != null ?
localAppearances.getOrDefault(reference, Collections.emptySet()) :
Collections.emptySet();
}
void addLocalAppearance(String reference, String localAppearance) {
if (localAppearances == null) {
localAppearances = new HashMap<>();
}
localAppearances.computeIfAbsent(reference, v -> new HashSet<>()).add(localAppearance);
}
List getGlobalAppearances() {
return hasGlobalAppearances() ? appearanceInfo.getAppearances() : Collections.emptyList();
}
boolean hasGlobalAppearances() {
return appearanceInfo != null && appearanceInfo.hasAppearances();
}
AppearanceInfo getAppearanceInfo() {
if (appearanceInfo == null) {
appearanceInfo = new AppearanceInfo();
}
return appearanceInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy