Question: In Java. More finite classes: a Card class Here is where actual code requirements start. Create Rank and Suit enum types and use them below.


In Java.
More finite classes: a Card class Here is where actual code requirements start. Create Rank and Suit enum types and use them below. Create an immutable Card class with the following interface \begin{tabular}{l} public Rank getRank(); \\ public Suit getSuit(); \\ public int getCribCount(); \\ public String toString(); \\ public static Card getCard(Rank r, Suit s); \\ public static Card getCard(int i); \\ \hline \end{tabular} The toString() method should return a string like "9S" for the nine of spades. Tens can be acceptable. Your Card class needs constructors, and internal private state variables. The static getCard mehtods should just call these constructors, as in The Card(int i ) should take a number 0i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
