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 dataValue

The 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 * * @return

The name of this key

*/ public String getKeyName() { return this.keyName; } /** * Gets the integer data value of this persistent data key * * @return

The integer data value

*/ public int getDataValue() { return this.dataValue; } }