Enum IExcelCellStyle.Color
- java.lang.Object
-
- java.lang.Enum<IExcelCellStyle.Color>
-
- com.mendix.modules.exportmanager.interfaces.excel.IExcelCellStyle.Color
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IExcelCellStyle.Color>
- Enclosing interface:
- IExcelCellStyle
public static enum IExcelCellStyle.Color extends java.lang.Enum<IExcelCellStyle.Color>
Defines the available colors.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description short
index()
Returns the index of the color.static IExcelCellStyle.Color
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IExcelCellStyle.Color[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AQUA
public static final IExcelCellStyle.Color AQUA
-
AUTOMATIC
public static final IExcelCellStyle.Color AUTOMATIC
-
BLACK
public static final IExcelCellStyle.Color BLACK
-
BLUE
public static final IExcelCellStyle.Color BLUE
-
BLUE_GREY
public static final IExcelCellStyle.Color BLUE_GREY
-
BRIGHT_GREEN
public static final IExcelCellStyle.Color BRIGHT_GREEN
-
BROWN
public static final IExcelCellStyle.Color BROWN
-
CORAL
public static final IExcelCellStyle.Color CORAL
-
CORNFLOWER_BLUE
public static final IExcelCellStyle.Color CORNFLOWER_BLUE
-
DARK_BLUE
public static final IExcelCellStyle.Color DARK_BLUE
-
DARK_GREEN
public static final IExcelCellStyle.Color DARK_GREEN
-
DARK_RED
public static final IExcelCellStyle.Color DARK_RED
-
DARK_TEAL
public static final IExcelCellStyle.Color DARK_TEAL
-
DARK_YELLOW
public static final IExcelCellStyle.Color DARK_YELLOW
-
GOLD
public static final IExcelCellStyle.Color GOLD
-
GREEN
public static final IExcelCellStyle.Color GREEN
-
GREY_25_PERCENT
public static final IExcelCellStyle.Color GREY_25_PERCENT
-
GREY_40_PERCENT
public static final IExcelCellStyle.Color GREY_40_PERCENT
-
GREY_50_PERCENT
public static final IExcelCellStyle.Color GREY_50_PERCENT
-
GREY_80_PERCENT
public static final IExcelCellStyle.Color GREY_80_PERCENT
-
INDIGO
public static final IExcelCellStyle.Color INDIGO
-
LAVENDER
public static final IExcelCellStyle.Color LAVENDER
-
LEMON_CHIFFON
public static final IExcelCellStyle.Color LEMON_CHIFFON
-
LIGHT_BLUE
public static final IExcelCellStyle.Color LIGHT_BLUE
-
LIGHT_CORNFLOWER_BLUE
public static final IExcelCellStyle.Color LIGHT_CORNFLOWER_BLUE
-
LIGHT_GREEN
public static final IExcelCellStyle.Color LIGHT_GREEN
-
LIGHT_ORANGE
public static final IExcelCellStyle.Color LIGHT_ORANGE
-
LIGHT_TURQUOISE
public static final IExcelCellStyle.Color LIGHT_TURQUOISE
-
LIGHT_YELLOW
public static final IExcelCellStyle.Color LIGHT_YELLOW
-
LIME
public static final IExcelCellStyle.Color LIME
-
MAROON
public static final IExcelCellStyle.Color MAROON
-
OLIVE_GREEN
public static final IExcelCellStyle.Color OLIVE_GREEN
-
ORANGE
public static final IExcelCellStyle.Color ORANGE
-
ORCHID
public static final IExcelCellStyle.Color ORCHID
-
PALE_BLUE
public static final IExcelCellStyle.Color PALE_BLUE
-
PINK
public static final IExcelCellStyle.Color PINK
-
PLUM
public static final IExcelCellStyle.Color PLUM
-
RED
public static final IExcelCellStyle.Color RED
-
ROSE
public static final IExcelCellStyle.Color ROSE
-
ROYAL_BLUE
public static final IExcelCellStyle.Color ROYAL_BLUE
-
SEA_GREEN
public static final IExcelCellStyle.Color SEA_GREEN
-
SKY_BLUE
public static final IExcelCellStyle.Color SKY_BLUE
-
TAN
public static final IExcelCellStyle.Color TAN
-
TEAL
public static final IExcelCellStyle.Color TEAL
-
TURQUOISE
public static final IExcelCellStyle.Color TURQUOISE
-
VIOLET
public static final IExcelCellStyle.Color VIOLET
-
WHITE
public static final IExcelCellStyle.Color WHITE
-
YELLOW
public static final IExcelCellStyle.Color YELLOW
-
-
Method Detail
-
values
public static IExcelCellStyle.Color[] 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 (IExcelCellStyle.Color c : IExcelCellStyle.Color.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IExcelCellStyle.Color valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
index
public short index()
Returns the index of the color.
-
-