AbstractConfigurationFile

public abstract class AbstractConfigurationFile

The parent configuration file

Inheritors

Constructors

Link copied to clipboard
public void AbstractConfigurationFile(JavaPlugin plugin, String name)
Initialise an instance with a plugin &name defined

Functions

Link copied to clipboard
public abstract Object get(String var1)
Get the property in the config file as a java.lang.Object.
Link copied to clipboard
public abstract double getDouble(String var1)
Get the property in the config file as a java.lang.Double.
Link copied to clipboard
public abstract int getInteger(String var1)
Get the property in the config file as an java.lang.Integer.
Link copied to clipboard
public abstract String getString(String var1)
Get the property in the config file as a String
Link copied to clipboard
public abstract List<String> getStringList(String var1)
Get the property in the config file as a java.util.List.
Link copied to clipboard
public abstract String getStringOrDefault(String var1, String var2)
Get the property in the config file as a java.lang.String.
Link copied to clipboard
public abstract void reloadConfig()