
com.moon.core.util.PropertiesYamlParser Maven / Gradle / Ivy
package com.moon.core.util;
import com.moon.core.util.interfaces.Parser;
import java.util.Map;
/**
* @author moonsky
*/
class PropertiesYamlParser extends PropertiesParser implements Parser {
public PropertiesYamlParser() { }
public PropertiesYamlParser(String namespace) { super(namespace); }
public PropertiesYamlParser(String namespace, boolean bubbleDelimiters) { super(namespace, bubbleDelimiters); }
public PropertiesYamlParser(
String namespace, boolean bubbleDelimiters, Map parsedSources
) { super(namespace, bubbleDelimiters, parsedSources); }
@Override
protected PropertiesParser getParser(
String namespace, boolean bubbleDelimiters, Map parsedSources
) { return new PropertiesParser(namespace, bubbleDelimiters, parsedSources); }
@Override
protected PropertiesHashMap getResources(String sourcePath) { throw new UnsupportedOperationException(); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy