Package org.apache.hop.core.gui
Enum IGc.EColor
- java.lang.Object
-
- java.lang.Enum<IGc.EColor>
-
- org.apache.hop.core.gui.IGc.EColor
-
- All Implemented Interfaces:
Serializable,Comparable<IGc.EColor>
- Enclosing interface:
- IGc
public static enum IGc.EColor extends Enum<IGc.EColor>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IGc.EColorvalueOf(String name)Returns the enum constant of this type with the specified name.static IGc.EColor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BACKGROUND
public static final IGc.EColor BACKGROUND
-
BLACK
public static final IGc.EColor BLACK
-
WHITE
public static final IGc.EColor WHITE
-
RED
public static final IGc.EColor RED
-
YELLOW
public static final IGc.EColor YELLOW
-
HOP_FALSE
public static final IGc.EColor HOP_FALSE
-
GREEN
public static final IGc.EColor GREEN
-
BLUE
public static final IGc.EColor BLUE
-
MAGENTA
public static final IGc.EColor MAGENTA
-
PURPULE
public static final IGc.EColor PURPULE
-
INDIGO
public static final IGc.EColor INDIGO
-
GRAY
public static final IGc.EColor GRAY
-
LIGHTGRAY
public static final IGc.EColor LIGHTGRAY
-
DARKGRAY
public static final IGc.EColor DARKGRAY
-
LIGHTBLUE
public static final IGc.EColor LIGHTBLUE
-
CRYSTAL
public static final IGc.EColor CRYSTAL
-
HOP_DEFAULT
public static final IGc.EColor HOP_DEFAULT
-
HOP_TRUE
public static final IGc.EColor HOP_TRUE
-
DEPRECATED
public static final IGc.EColor DEPRECATED
-
-
Method Detail
-
values
public static IGc.EColor[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IGc.EColor c : IGc.EColor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IGc.EColor valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-