
me.grison.jtoml.TomlParser Maven / Gradle / Ivy
package me.grison.jtoml;
import java.util.Map;
/**
* Toml Parser interface.
*
* Every parser should implement that interface.
*
* See: The TOML GitHub project for more information about it.
*
* @author $Author: Alexandre Grison$
*/
public interface TomlParser {
/**
* Parses the given TOML String.
*
* @param tomlString the TOML String
* @return a Map representing the given TOML structure.
*/
public Map parse(String tomlString);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy