Uses of Interface
blackjackanalyst.DealerStrategy

Packages that use DealerStrategy
blackjackanalyst   
blackjackanalyst.strategy   
 

Uses of DealerStrategy in blackjackanalyst
 

Methods in blackjackanalyst that return DealerStrategy
 DealerStrategy Table.getStrategy()
          Returns the strategy used by the dealer.
 

Constructors in blackjackanalyst with parameters of type DealerStrategy
Table(int _max_players, DealerStrategy _dealer_strat, int _min_bet, int _max_bet)
          Creates a new unnamed table with the given maximum number of players, dealer strategy, and minimum bet and maximum bet.
Table(java.lang.String _name, int _max_players, DealerStrategy _dealer_strat, int _min_bet, int _max_bet)
          Creates a new table with the given name, maximum number of players, dealer strategy, and minimum bet and maximum bet.
 

Uses of DealerStrategy in blackjackanalyst.strategy
 

Classes in blackjackanalyst.strategy that implement DealerStrategy
 class DefaultDealer
          The default dealer strategy, which hits on any value below 16 or soft 17.