Enum Class ModState

java.lang.Object
java.lang.Enum<ModState>
net.minheur.potoflux.loader.mod.ModState
All Implemented Interfaces:
Serializable, Comparable<ModState>, Constable

public enum ModState extends Enum<ModState>
  • Enum Constant Details

    • NOT_PROCESSED

      public static final ModState NOT_PROCESSED
    • LOADING

      public static final ModState LOADING
    • INCOMPATIBLE

      public static final ModState INCOMPATIBLE
    • CIRCULAR

      public static final ModState CIRCULAR
    • MISSING_DEPENDENCIES

      public static final ModState MISSING_DEPENDENCIES
    • DEPENDENCY_WRONG_VERSION

      public static final ModState DEPENDENCY_WRONG_VERSION
    • FAILED

      public static final ModState FAILED
    • LOADED

      public static final ModState LOADED
    • circularLastest

      public static final ModState circularLastest
  • Method Details

    • values

      public static ModState[] 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 ModState 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