
io.magentys.commons.adapt.string.YamlMappingOfMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magentys-commons Show documentation
Show all versions of magentys-commons Show documentation
Common utilities to support testing
The newest version!
package io.magentys.commons.adapt.string;
import org.yaml.snakeyaml.Yaml;
import java.util.Map;
import java.util.Set;
public class YamlMappingOfMapping {
private Map> mappings;
@SuppressWarnings("unchecked")
public YamlMappingOfMapping(String string) {
mappings = (Map>) new Yaml().load(string);
}
public Map getMappingsFor(String key) {
return mappings.get(key);
}
public Set getKeys() {
return mappings.keySet();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy