Uses of Class
inonit.domain.game.card.Rank

Packages that use Rank
inonit.domain.game.card A set of classes representing constructs commonly used in card games. 
inonit.domain.game.card.hearts Classes related to the card game Hearts. 
inonit.domain.game.card.hearts.ai An abstract Intelligence implementation and associated classes which represent current Game state. 
 

Uses of Rank in inonit.domain.game.card
 

Fields in inonit.domain.game.card declared as Rank
static Rank Rank.ACE
           
static Rank Rank.KING
           
static Rank Rank.QUEEN
           
static Rank Rank.JACK
           
static Rank Rank.TEN
           
static Rank Rank.NINE
           
static Rank Rank.EIGHT
           
static Rank Rank.SEVEN
           
static Rank Rank.SIX
           
static Rank Rank.FIVE
           
static Rank Rank.FOUR
           
static Rank Rank.THREE
           
static Rank Rank.TWO
           
 

Methods in inonit.domain.game.card that return Rank
 Rank Card.getRank()
          Returns the Rank of this Card.
 

Methods in inonit.domain.game.card with parameters of type Rank
 int Rank.Order.getValue(Rank rank)
          Returns the value of a particular Rank in this ordering.
static Card Card.get(Rank rank, Suit suit)
          Returns a Card object of the given Rank and Suit.
 

Constructors in inonit.domain.game.card with parameters of type Rank
Rank.Order(Rank[] ranksInAscendingOrder)
          Creates an ordering of Ranks.
 

Uses of Rank in inonit.domain.game.card.hearts
 

Methods in inonit.domain.game.card.hearts that return Rank
 Rank[] Hearts.getRanks()
          Returns an array containing the Rank objects typically included in a Hearts deck.
 

Uses of Rank in inonit.domain.game.card.hearts.ai
 

Methods in inonit.domain.game.card.hearts.ai with parameters of type Rank
protected  boolean AbstractIntelligence.isHigher(Card card, Rank rank)
          Returns whether the given Card is higher than the given Rank.
protected  boolean AbstractIntelligence.isLower(Card card, Rank rank)
          Returns whether the given Card is lower than the given Rank.