Enum Class EnumGuiScreen

java.lang.Object
java.lang.Enum<EnumGuiScreen>
com.pixelmonmod.pixelmon.enums.EnumGuiScreen
All Implemented Interfaces:
Serializable, Comparable<EnumGuiScreen>, Constable

public enum EnumGuiScreen extends Enum<EnumGuiScreen>
All distinct GUI screens in Pixelmon.
  • Enum Constant Details

  • Method Details

    • values

      public static EnumGuiScreen[] 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 EnumGuiScreen 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
    • getIndex

      public int getIndex()
      Returns the enum index of the enum.
      Returns:
      The enum index of the enum.
    • hasGUI

      public static boolean hasGUI(String name)
      Checks whether the given name has a GUI associated with it.
      Parameters:
      name - The name to check.
      Returns:
      Whether the name has a GUI associated with it.
    • getFromOrdinal

      public static EnumGuiScreen getFromOrdinal(int id)
      Returns the GUI with the specified enum index.
      Parameters:
      id - The enum index to find the GUI from.
      Returns:
      The GUI with the enum index.