Java.
Could someone please help me to implement thecheckPlayerHand() and playGame()methods in the VideoPoker class?
public class VideoPoker {
// default constant values
private static final int defaultBalance=100;
private static final int numberCards=5;
// default constant payout value and playerHand types
private static final int[]winningMultipliers={1,2,5,10,15,20,25,50,250};
private static final String[] winningHands={
“Royal Pair” , “Two Pairs” , “Three of a Kind”,”Straight”, “Flush “,
“Full House”, “Four of a Kind”, “Straight Flush”,”Royal Flush” };
// use one deck of cards
private Decks thisDeck;
// holding current player 5-card hand,
OR
OR