import java.awt.*;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author lubo
 */
public enum BallColor {
    Red(Color.RED),
    Blue(Color.BLUE),
    Green(Color.GREEN);
    private Color color;
    BallColor(Color color){
        this.color = color;
    }
    Color color() {
        return color;
    }
}