dev.aurelium.auraskills.api.option.OptionedProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auraskills-api Show documentation
Show all versions of auraskills-api Show documentation
API for AuraSkills, the ultra-versatile RPG skills plugin for Minecraft
package dev.aurelium.auraskills.api.option;
import java.util.List;
import java.util.Map;
public interface OptionedProvider {
boolean optionBoolean(T type, String key);
boolean optionBoolean(T type, String key, boolean def);
int optionInt(T type, String key);
int optionInt(T type, String key, int def);
double optionDouble(T type, String key);
double optionDouble(T type, String key, double def);
String optionString(T type, String key);
String optionString(T type, String key, String def);
List optionStringList(T type, String key);
Map optionMap(T type, String key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy