Uses of Class
org.tomlj.TomlPosition
-
Packages that use TomlPosition Package Description org.tomlj A parser for Tom's Obvious, Minimal Language (TOML). -
-
Uses of TomlPosition in org.tomlj
Fields in org.tomlj declared as TomlPosition Modifier and Type Field Description private TomlPosition
MutableTomlTable. definedAt
(package private) TomlPosition
MutableTomlArray.Element. position
(package private) TomlPosition
MutableTomlTable.Element. position
private TomlPosition
TomlParseError. position
Fields in org.tomlj with type parameters of type TomlPosition Modifier and Type Field Description (package private) java.util.List<java.util.AbstractMap.SimpleEntry<MutableTomlTable,TomlPosition>>
MutableTomlTable.EnsureTableResult. intermediates
private java.util.Map<MutableTomlTable,TomlPosition>
InlineTableVisitor. openTables
private java.util.Map<MutableTomlTable,TomlPosition>
LineVisitor. openTables
Methods in org.tomlj that return TomlPosition Modifier and Type Method Description TomlPosition
EmptyTomlArray. inputPositionOf(int index)
@Nullable TomlPosition
EmptyTomlTable. inputPositionOf(java.util.List<java.lang.String> path)
TomlPosition
MutableTomlArray. inputPositionOf(int index)
@Nullable TomlPosition
MutableTomlTable. inputPositionOf(java.util.List<java.lang.String> path)
TomlPosition
TomlArray. inputPositionOf(int index)
Get the position where a value is defined in the TOML document.default @Nullable TomlPosition
TomlTable. inputPositionOf(java.lang.String dottedKey)
Get the position where a key is defined in the TOML document.@Nullable TomlPosition
TomlTable. inputPositionOf(java.util.List<java.lang.String> path)
Get the position where a key is defined in the TOML document.TomlPosition
TomlParseError. position()
The position in the input where the error occurred.static TomlPosition
TomlPosition. positionAt(int line, int column)
Create a position.Methods in org.tomlj that return types with arguments of type TomlPosition Modifier and Type Method Description (package private) java.util.List<java.util.AbstractMap.SimpleEntry<MutableTomlTable,TomlPosition>>
MutableTomlTable. set(java.lang.String keyPath, java.lang.Object value, TomlPosition position)
(package private) java.util.List<java.util.AbstractMap.SimpleEntry<MutableTomlTable,TomlPosition>>
MutableTomlTable. set(java.util.List<java.lang.String> path, java.lang.Object value, TomlPosition position)
Methods in org.tomlj with parameters of type TomlPosition Modifier and Type Method Description MutableHomogeneousTomlArray
MutableHomogeneousTomlArray. append(java.lang.Object value, TomlPosition position)
(package private) MutableTomlArray
MutableTomlArray. append(java.lang.Object value, TomlPosition position)
(package private) MutableTomlTable
MutableTomlTable. createTable(java.util.List<java.lang.String> path, TomlPosition position)
(package private) MutableTomlTable
MutableTomlTable. createTableArray(java.util.List<java.lang.String> path, TomlPosition position)
(package private) void
MutableTomlTable. define(TomlPosition position)
private MutableTomlTable.EnsureTableResult
MutableTomlTable. ensureTable(java.util.List<java.lang.String> path, TomlPosition position, boolean followTableArrays, boolean followDefinedTables)
Ensure a table exists at a given path.private void
AccumulatingErrorListener. reportError(java.lang.String message, TomlPosition position)
(package private) java.util.List<java.util.AbstractMap.SimpleEntry<MutableTomlTable,TomlPosition>>
MutableTomlTable. set(java.lang.String keyPath, java.lang.Object value, TomlPosition position)
(package private) java.util.List<java.util.AbstractMap.SimpleEntry<MutableTomlTable,TomlPosition>>
MutableTomlTable. set(java.util.List<java.lang.String> path, java.lang.Object value, TomlPosition position)
Constructors in org.tomlj with parameters of type TomlPosition Constructor Description Element(java.lang.Object value, TomlPosition position)
Element(java.lang.Object value, TomlPosition position)
InlineTableVisitor(TomlVersion version, TomlPosition position)
MutableTomlTable(TomlVersion version, TomlPosition definedAt)
TomlParseError(java.lang.String message, TomlPosition position)
TomlParseError(java.lang.String message, TomlPosition position, java.lang.Throwable cause)
Constructor parameters in org.tomlj with type arguments of type TomlPosition Constructor Description EnsureTableResult(MutableTomlTable table, java.util.List<java.util.AbstractMap.SimpleEntry<MutableTomlTable,TomlPosition>> intermediates)
-