Package game

Enum Class CardSuit

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

public enum CardSuit extends Enum<CardSuit>
An enum with the cards' suits
  • Enum Constant Details

    • CUPS

      public static final CardSuit CUPS
    • SWORDS

      public static final CardSuit SWORDS
    • CLUBS

      public static final CardSuit CLUBS
    • COINS

      public static final CardSuit COINS
    • NONE

      public static final CardSuit NONE
  • Field Details

    • value

      public final Integer value
  • Method Details

    • values

      public static CardSuit[] 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 CardSuit 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
    • getValue

      public Integer getValue()
    • fromValue

      public static CardSuit fromValue(int value)
    • getName

      public static CardSuit getName(String value)