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.DefaultImplsNested 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 ConstantsEnum ConstantDescriptionDisable 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 TypeMethodDescription@NotNull Stringprefix()static MineColoniesCompatModesReturns the enum constant of this class with the specified name.static MineColoniesCompatModes[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface me.fzzyhmstrs.fzzy_config.util.EnumTranslatable
descriptionKey, prefixKey, translation, translationKeyMethods inherited from interface me.fzzyhmstrs.fzzy_config.util.Translatable
description, descriptionOrNull, hasDescription, hasPrefix, hasTranslation, prefix, prefixOrNull, translationOrNull
-
Enum Constant Details
-
REPLACE
Replace MineColonies chainmail recipes. -
DISABLE_ARMOR
Disable GK1H Recipes chainmail armor recipes. -
DISABLE_ALL
Disable GK1H Recipes chain and chainmail armor recipes. -
NOTHING
Do nothing, not recommended, used as fallback when MineColonies is not loaded.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
prefix
- Specified by:
prefixin interfaceme.fzzyhmstrs.fzzy_config.util.EnumTranslatable
-