Enum Class MineColoniesCompatModes

java.lang.Object
java.lang.Enum<MineColoniesCompatModes>
io.github.gameking1happy.gk1hrecipes.config.MineColoniesCompatModes
All Implemented Interfaces:
Serializable, Comparable<MineColoniesCompatModes>, Constable, me.fzzyhmstrs.fzzy_config.util.EnumTranslatable, me.fzzyhmstrs.fzzy_config.util.Translatable

public enum MineColoniesCompatModes extends Enum<MineColoniesCompatModes> implements me.fzzyhmstrs.fzzy_config.util.EnumTranslatable
Compat modes for MineColonies.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>

    Nested classes/interfaces inherited from interface me.fzzyhmstrs.fzzy_config.util.EnumTranslatable

    me.fzzyhmstrs.fzzy_config.util.EnumTranslatable.DefaultImpls

    Nested classes/interfaces inherited from interface me.fzzyhmstrs.fzzy_config.util.Translatable

    me.fzzyhmstrs.fzzy_config.util.Translatable.Desc, me.fzzyhmstrs.fzzy_config.util.Translatable.Impls, me.fzzyhmstrs.fzzy_config.util.Translatable.Name, me.fzzyhmstrs.fzzy_config.util.Translatable.Prefix, me.fzzyhmstrs.fzzy_config.util.Translatable.Result, me.fzzyhmstrs.fzzy_config.util.Translatable.Utils
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Disable GK1H Recipes chain and chainmail armor recipes.
    Disable GK1H Recipes chainmail armor recipes.
    Do nothing, not recommended, used as fallback when MineColonies is not loaded.
    Replace MineColonies chainmail recipes.
  • Field Summary

    Fields inherited from interface me.fzzyhmstrs.fzzy_config.util.Translatable

    Utils
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull String
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface me.fzzyhmstrs.fzzy_config.util.EnumTranslatable

    descriptionKey, prefixKey, translation, translationKey

    Methods inherited from interface me.fzzyhmstrs.fzzy_config.util.Translatable

    description, descriptionOrNull, hasDescription, hasPrefix, hasTranslation, prefix, prefixOrNull, translationOrNull
  • Enum Constant Details

    • REPLACE

      public static final MineColoniesCompatModes REPLACE
      Replace MineColonies chainmail recipes.
    • DISABLE_ARMOR

      public static final MineColoniesCompatModes DISABLE_ARMOR
      Disable GK1H Recipes chainmail armor recipes.
    • DISABLE_ALL

      public static final MineColoniesCompatModes DISABLE_ALL
      Disable GK1H Recipes chain and chainmail armor recipes.
    • NOTHING

      public static final MineColoniesCompatModes NOTHING
      Do nothing, not recommended, used as fallback when MineColonies is not loaded.
  • Method Details

    • values

      public static MineColoniesCompatModes[] 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 MineColoniesCompatModes 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
    • prefix

      @NotNull public @NotNull String prefix()
      Specified by:
      prefix in interface me.fzzyhmstrs.fzzy_config.util.EnumTranslatable