1/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.internal.telephony.cat;
18
19
20/**
21 * Enumeration for representing text color.
22 *
23 * {@hide}
24 */
25public enum TextColor {
26    BLACK(0x0),
27    DARK_GRAY(0x1),
28    DARK_RED(0x2),
29    DARK_YELLOW(0x3),
30    DARK_GREEN(0x4),
31    DARK_CYAN(0x5),
32    DARK_BLUE(0x6),
33    DARK_MAGENTA(0x7),
34    GRAY(0x8),
35    WHITE(0x9),
36    BRIGHT_RED(0xa),
37    BRIGHT_YELLOW(0xb),
38    BRIGHT_GREEN(0xc),
39    BRIGHT_CYAN(0xd),
40    BRIGHT_BLUE(0xe),
41    BRIGHT_MAGENTA(0xf);
42
43    private int mValue;
44
45    TextColor(int value) {
46        mValue = value;
47    }
48
49    /**
50     * Create a TextColor object.
51     * @param value Integer value to be converted to a TextColor object.
52     * @return TextColor object whose value is {@code value}. If no TextColor
53     *         object has that value, null is returned.
54     */
55    public static TextColor fromInt(int value) {
56        for (TextColor e : TextColor.values()) {
57            if (e.mValue == value) {
58                return e;
59            }
60        }
61        return null;
62    }
63}
64