-footer

Uses of Interface
garrettsmith.blackjack.Move

Packages that use Move
garrettsmith.blackjack Provides classes for playing a game of blackjack. 
garrettsmith.blackjack.refimpl Provides for using the blackjack framework via the console and serves as an example implementation of EventHandler
 

Uses of Move in garrettsmith.blackjack
 

Fields in garrettsmith.blackjack declared as Move
static Move Move.DOUBLE
          Single instance of the move that represents doubling down.
static Move Move.HIT
          Single instance of the move that represents hitting.
static Move Move.SPLIT
          Single instance of the move that represents splitting the hand.
static Move Move.STAND
          Single instance of the move that represents standing.
static Move Move.SURRENDER
          Single instance of the move that represents surrendering.
 

Methods in garrettsmith.blackjack that return Move
 Move EventHandler.offerRegularTurn(Hand hand)
          Method invoked when the player is offered a turn.
 

Methods in garrettsmith.blackjack with parameters of type Move
 boolean Hand.isMoveAllowed(Move move)
          Returns whether move is allowed at this point in the game.
 

Uses of Move in garrettsmith.blackjack.refimpl
 

Methods in garrettsmith.blackjack.refimpl that return Move
 Move TextPlayer.offerRegularTurn(Hand hand)
           
 


-footer

Copyright 2001-5 Garrett Smith. Use is subject to license terms.