Package a5.util

Enum Class PlayerType

All Implemented Interfaces:
Serializable, Comparable<PlayerType>, Constable

public enum PlayerType extends Enum<PlayerType>
An enum representing the type of player. Each type is associated with a string name that represents the player's type.
  • Enum Constant Details

  • Method Details

    • values

      public static PlayerType[] 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 PlayerType 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
    • fromString

      public static Maybe<PlayerType> fromString(String name)
      Returns: the type of player whose name matches. It is case-insensitive.
      Parameters:
      name - type of the player
    • toString

      public String toString()
      Overrides:
      toString in class Enum<PlayerType>
    • options

      public static String options()
      Returns: a string representing a list of all valid player types. The format is: <playertype1|playertype2...>