package net.knarcraft.minigames.property; /** * An enum for all persistent data keys used by this plugin */ public enum PersistentDataKey { MENU_ITEM("MiniGamesMenu", 1799804), LEAVE_ITEM("MiniGamesAction", 1799871), GIVE_UP_ITEM("MiniGamesAction", 1799872), ; private final String keyName; private final int dataValue; /** * Instantiates a new persistent data key * * @param keyName
The name of this key
* @param dataValueThe integer data value of this key
*/ PersistentDataKey(String keyName, int dataValue) { this.keyName = keyName; this.dataValue = dataValue; } /** * Gets the name of this persistent data key * * @returnThe name of this key
*/ public String getKeyName() { return this.keyName; } /** * Gets the integer data value of this persistent data key * * @returnThe integer data value
*/ public int getDataValue() { return this.dataValue; } }