/*the enumerated values of the cards of a deck and their
individual point value in bridge*/
public enum Rank
{
	TWO 		(0) ,
	THREE 	(0) ,
	FOUR 		(0) ,
	FIVE 		(0) ,
	SIX 		(0) ,
	SEVEN 	(0) ,
	EIGHT 	(0) ,
	NINE 		(0) ,
	TEN 		(0) ,
	JACK 		(1) ,
	QUEEN 	(2) ,
	KING 		(3) ,
	ACE 		(4) ; 

	private final int 	points; //the points value
	//rank constructor
	Rank(int points)
	{
		this.points = points;
	}
	
	/***********
	*This returns
	*point value of
	*rank.
	*@return - points
	**************/
	public int getPoints()
	{
		return points;
	}
}
