Package javatro.core

Enum Class Card.Suit

java.lang.Object
java.lang.Enum<Card.Suit>
javatro.core.Card.Suit
All Implemented Interfaces:
Serializable, Comparable<Card.Suit>, Constable
Enclosing class:
Card

public static enum Card.Suit extends Enum<Card.Suit>
Enumeration of card suits with full display names.
  • Enum Constant Details

    • HEARTS

      public static final Card.Suit HEARTS
    • CLUBS

      public static final Card.Suit CLUBS
    • SPADES

      public static final Card.Suit SPADES
    • DIAMONDS

      public static final Card.Suit DIAMONDS
  • Method Details

    • values

      public static Card.Suit[] 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 Card.Suit 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
    • getName

      public String getName()
      Returns the formal name of the suit.