Uses of Class
glassfrog.handevaluator.EvaluateCard

Packages that use EvaluateCard
glassfrog.handevaluator   
 

Uses of EvaluateCard in glassfrog.handevaluator
 

Fields in glassfrog.handevaluator declared as EvaluateCard
private  EvaluateCard[] EvaluateDeck.gCards
           
 

Methods in glassfrog.handevaluator that return EvaluateCard
 EvaluateCard EvaluateDeck.deal()
          Obtain the next card in the deck.
 EvaluateCard EvaluateDeck.dealCard()
          Obtain the next card in the deck.
 EvaluateCard EvaluateDeck.extractRandomCard()
          Remove and return a randomly selected card from within the deck.
 EvaluateCard EvaluateHand.getCard(int pos)
          Get the a specified card in the hand
 EvaluateCard EvaluateDeck.getCard(int i)
          Obtain the card at a specific index in the deck.
 EvaluateCard EvaluateDeck.pickRandomCard()
          Return a randomly selected card from within the deck without removing it.
 

Methods in glassfrog.handevaluator with parameters of type EvaluateCard
 boolean EvaluateHand.addCard(EvaluateCard c)
          Add a card to the hand.
 void EvaluateDeck.extractCard(EvaluateCard c)
          Remove a card from within the deck.
 int EvaluateDeck.findCard(EvaluateCard c)
          Find position of Card in Deck.
private  int EvaluateDeck.findDiscard(EvaluateCard c)
           
 int HandEvaluator.rankHand(EvaluateCard c1, EvaluateCard c2, EvaluateHand h)
          Get a numerical ranking of this hand.
 void EvaluateDeck.replaceCard(EvaluateCard c)
          Place a card back into the deck.
 void EvaluateHand.setCard(int pos, EvaluateCard c)
          Add a card to the hand.