forked from prmr/DesignBook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCard.java
More file actions
81 lines (74 loc) · 1.96 KB
/
Card.java
File metadata and controls
81 lines (74 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*******************************************************************************
* Companion code for the book "Introduction to Software Design with Java"
* by Martin P. Robillard.
*
* Copyright (C) 2019 by Martin P. Robillard
*
* This code is licensed under a Creative Commons
* Attribution-NonCommercial-NoDerivatives 4.0 International License.
*
* See http://creativecommons.org/licenses/by-nc-nd/4.0/
*******************************************************************************/
package chapter3;
import java.util.Comparator;
/**
* Implementation of a playing card. This class yields immutable objects.
* This version of the class also implements the Comparable interface and
* compares cards by rank, with an undefined order for cards of the same rank.
* The class also includes a static factory method to create Comparator
* objects that can compare cards according to their rank.
*/
public class Card implements Comparable<Card>
{
private Rank aRank;
private Suit aSuit;
/**
* Creates a new card object.
*
* @param pRank The rank of the card.
* @param pSuit The suit of the card.
* @pre pRank != null
* @pre pSuit != null
*/
public Card(Rank pRank, Suit pSuit)
{
assert pRank != null && pSuit != null;
aRank = pRank;
aSuit = pSuit;
}
/**
* @return The rank of the card.
*/
public Rank getRank()
{
return aRank;
}
/**
* @return The suit of the card.
*/
public Suit getSuit()
{
return aSuit;
}
@Override
public int compareTo(Card pCard)
{
return aRank.compareTo(pCard.aRank);
}
/**
* Sample static factory method to create a comparator capable
* of comparing cards by rank.
*
* @return The created comparator.
*/
public static Comparator<Card> createByRankComparator()
{
return new Comparator<Card>()
{
public int compare(Card pCard1, Card pCard2)
{
return pCard1.aRank.compareTo(pCard2.aRank);
}
};
}
}