public abstract class TomlRemapper
extends java.lang.Object
| Constructor and Description |
|---|
TomlRemapper() |
| Modifier and Type | Method and Description |
|---|---|
abstract @Nullable TomlRemapper |
getNextRemapper(java.lang.String name)
This is applied after remapTable, so the new name should be checked for if applicable.
|
boolean |
remap(Toml toml)
Returns true if anything is remapped
|
boolean |
remapChildren(Toml toml)
Returns true if any children are remapped
|
boolean |
remapEntries(Toml toml)
Returns true if any entries are remapped
|
abstract Toml.TomlEntry<?> |
remapEntry(Toml parent,
Toml.TomlEntry<?> entry)
Return null to remove
|
abstract java.lang.String |
remapTable(java.lang.String name)
Return null to remove
|
boolean |
remapTables(Toml toml)
Returns true if any tables are remapped
|
public boolean remap(Toml toml)
public boolean remapChildren(Toml toml)
public boolean remapEntries(Toml toml)
public boolean remapTables(Toml toml)
@Nullable public abstract @Nullable TomlRemapper getNextRemapper(java.lang.String name)
public abstract java.lang.String remapTable(java.lang.String name)
public abstract Toml.TomlEntry<?> remapEntry(Toml parent, Toml.TomlEntry<?> entry)