- setAlone(boolean) - Method in class game.Euchre
-
A method to set the alone boolean.
- setCard(Card) - Method in class game.Player
-
A mutator to set a card to a certain index in the hand.
- setCardName(int) - Method in class game.Card
-
A method that sets the card name.
- setDealer(boolean) - Method in class game.Player
-
A method that sets the boolean to whether or not the player is
the dealer.
- setHand(ArrayList<Card>) - Method in class game.Player
-
A mutator that sets the hand.
- setSuit(Suits) - Method in class game.Card
-
A method that sets the suit.
- setT1Score(int) - Method in class game.Euchre
-
A mutator used to change team 1s' score.
- setT1Trick(int) - Static method in class game.Euchre
-
A mutator to set team 1's trick count.
- setT2Score(int) - Method in class game.Euchre
-
A mutator used to change team 2s' score.
- setT2Trick(int) - Static method in class game.Euchre
-
A mutator to set team 2's trick count.
- setTeam(Team) - Method in class game.Player
-
A mutator that sets the team of the player.
- setTrump(Suits) - Method in class game.Euchre
-
A mutator that sets trump.
- shuffle(ArrayList<Card>) - Method in class game.Euchre
-
A method that shuffles the deck ArrayList then deals.
- shuffleTest(ArrayList<Card>) - Method in class game.Euchre
-
A method that shuffles the deck ArrayList then deals.
- Suits - Enum in game
-
An enumerated class that holds suit information.
- swapDealer() - Method in class game.Euchre
-
A method used to swap the dealer.