aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/ant/apache-ant-1.9.6/src/main/org/apache/tools/ant/types/optional/image/ColorMapper.java
blob: 88e2871a2da80272167c9d7dee45f496647e1a6b (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 */
package org.apache.tools.ant.types.optional.image;

import java.awt.Color;

/**
 *
 * @see org.apache.tools.ant.taskdefs.optional.image.Image
 */
public final class ColorMapper {
    /** private constructor for Utility class */
    private ColorMapper() {
    }

    /** black string */
    public static final String COLOR_BLACK = "black";
    /** blue string */
    public static final String COLOR_BLUE = "blue";
    /** cyan string */
    public static final String COLOR_CYAN = "cyan";
    /** black string */
    public static final String COLOR_DARKGRAY = "darkgray";
    /** gray string */
    public static final String COLOR_GRAY = "gray";
    /** lightgray string */
    public static final String COLOR_LIGHTGRAY = "lightgray";
    // Gotta at least put in the proper spelling :-P
    /** darkgrey string */
    public static final String COLOR_DARKGREY = "darkgrey";
    /** grey string */
    public static final String COLOR_GREY = "grey";
    /** lightgrey string */
    public static final String COLOR_LIGHTGREY = "lightgrey";
    /** green string */
    public static final String COLOR_GREEN = "green";
    /** magenta string */
    public static final String COLOR_MAGENTA = "magenta";
    /** orange string */
    public static final String COLOR_ORANGE = "orange";
    /** pink string */
    public static final String COLOR_PINK = "pink";
    /** reg string */
    public static final String COLOR_RED = "red";
    /** white string */
    public static final String COLOR_WHITE = "white";
    /** yellow string */
    public static final String COLOR_YELLOW = "yellow";

    /**
     * Convert a color name to a color value.
     * @param colorName a string repr of the color.
     * @return the color value.
     * @todo refactor to use an EnumeratedAttribute (maybe?)
     */
    public static Color getColorByName(String colorName) {
        if (colorName.equalsIgnoreCase(COLOR_BLACK)) {
            return Color.black;
        } else if (colorName.equalsIgnoreCase(COLOR_BLUE)) {
            return Color.blue;
        } else if (colorName.equalsIgnoreCase(COLOR_CYAN)) {
            return Color.cyan;
        } else if (colorName.equalsIgnoreCase(COLOR_DARKGRAY) || colorName.equalsIgnoreCase(COLOR_DARKGREY)) {
            return Color.darkGray;
        } else if (colorName.equalsIgnoreCase(COLOR_GRAY) || colorName.equalsIgnoreCase(COLOR_GREY)) {
            return Color.gray;
        } else if (colorName.equalsIgnoreCase(COLOR_LIGHTGRAY) || colorName.equalsIgnoreCase(COLOR_LIGHTGREY)) {
            return Color.lightGray;
        } else if (colorName.equalsIgnoreCase(COLOR_GREEN)) {
            return Color.green;
        } else if (colorName.equalsIgnoreCase(COLOR_MAGENTA)) {
            return Color.magenta;
        } else if (colorName.equalsIgnoreCase(COLOR_ORANGE)) {
            return Color.orange;
        } else if (colorName.equalsIgnoreCase(COLOR_PINK)) {
            return Color.pink;
        } else if (colorName.equalsIgnoreCase(COLOR_RED)) {
            return Color.red;
        } else if (colorName.equalsIgnoreCase(COLOR_WHITE)) {
            return Color.white;
        } else if (colorName.equalsIgnoreCase(COLOR_YELLOW)) {
            return Color.yellow;
        }
        return Color.black;
    }

}