Enum Class SettingsEnum

java.lang.Object
java.lang.Enum<SettingsEnum>
wizardquest.settings.SettingsEnum
All Implemented Interfaces:
Serializable, Comparable<SettingsEnum>, Constable

public enum SettingsEnum extends Enum<SettingsEnum>
Enumerates all settings types in the game.
  • Enum Constant Details

    • TELEMETRY_ENABLED

      public static final SettingsEnum TELEMETRY_ENABLED
    • PLAYER_MAX_HEALTH

      public static final SettingsEnum PLAYER_MAX_HEALTH
    • ENEMY_DAMAGE_MULTIPLIER

      public static final SettingsEnum ENEMY_DAMAGE_MULTIPLIER
    • ENEMY_MAX_HEALTH_MULTIPLIER

      public static final SettingsEnum ENEMY_MAX_HEALTH_MULTIPLIER
    • STARTING_LIVES

      public static final SettingsEnum STARTING_LIVES
    • MAX_MAGIC

      public static final SettingsEnum MAX_MAGIC
    • MAGIC_REGEN_RATE

      public static final SettingsEnum MAGIC_REGEN_RATE
    • SHOP_ITEM_COUNT

      public static final SettingsEnum SHOP_ITEM_COUNT
  • Method Details

    • values

      public static SettingsEnum[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SettingsEnum valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getTelemetryName

      public String getTelemetryName()