Package org.tomlj

Interface TomlParseResult

  • All Superinterfaces:
    TomlTable

    public interface TomlParseResult
    extends TomlTable
    The result from parsing a TOML document.
    • Method Detail

      • hasErrors

        default boolean hasErrors()
        true if the TOML document contained errors.
        Returns:
        true if the TOML document contained errors.
      • errors

        java.util.List<TomlParseError> errors()
        The errors that occurred during parsing.
        Returns:
        A list of errors.