/* * Card.java * * A blueprint class for objects that represent a single playing card * for a game in which cards have both colors and numeric values. * * starter code: CS 112 Staff (cs112-staff@cs.bu.edu) * completed by: */ public class Card { /* The smallest possible value that a Card can have. */ public static final int MIN_VALUE = 0; /* The possible colors that a Card can have. */ public static final String[] COLORS = {"blue", "green", "red", "yellow"}; /* Define the third class constant here. */ /* Put the rest of your class definition below. */ }