Package io.keikai.api.model
Enum CellStyle.FillPattern
- java.lang.Object
-
- java.lang.Enum<CellStyle.FillPattern>
-
- io.keikai.api.model.CellStyle.FillPattern
-
- All Implemented Interfaces:
Serializable
,Comparable<CellStyle.FillPattern>
- Enclosing interface:
- CellStyle
public static enum CellStyle.FillPattern extends Enum<CellStyle.FillPattern>
The fill pattern- Since:
- 3.7.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DARK_DOWN
DARK_GRAY
DARK_GRID
DARK_HORIZONTAL
DARK_TRELLIS
DARK_UP
DARK_VERTICAL
GRAY0625
GRAY125
LIGHT_DOWN
LIGHT_GRAY
LIGHT_GRID
LIGHT_HORIZONTAL
LIGHT_TRELLIS
LIGHT_UP
LIGHT_VERTICAL
MEDIUM_GRAY
NONE
SOLID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CellStyle.FillPattern
valueOf(String name)
Returns the enum constant of this type with the specified name.static CellStyle.FillPattern[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CellStyle.FillPattern NONE
-
SOLID
public static final CellStyle.FillPattern SOLID
-
MEDIUM_GRAY
public static final CellStyle.FillPattern MEDIUM_GRAY
-
DARK_GRAY
public static final CellStyle.FillPattern DARK_GRAY
-
LIGHT_GRAY
public static final CellStyle.FillPattern LIGHT_GRAY
-
DARK_HORIZONTAL
public static final CellStyle.FillPattern DARK_HORIZONTAL
-
DARK_VERTICAL
public static final CellStyle.FillPattern DARK_VERTICAL
-
DARK_DOWN
public static final CellStyle.FillPattern DARK_DOWN
-
DARK_UP
public static final CellStyle.FillPattern DARK_UP
-
DARK_GRID
public static final CellStyle.FillPattern DARK_GRID
-
DARK_TRELLIS
public static final CellStyle.FillPattern DARK_TRELLIS
-
LIGHT_HORIZONTAL
public static final CellStyle.FillPattern LIGHT_HORIZONTAL
-
LIGHT_VERTICAL
public static final CellStyle.FillPattern LIGHT_VERTICAL
-
LIGHT_DOWN
public static final CellStyle.FillPattern LIGHT_DOWN
-
LIGHT_UP
public static final CellStyle.FillPattern LIGHT_UP
-
LIGHT_GRID
public static final CellStyle.FillPattern LIGHT_GRID
-
LIGHT_TRELLIS
public static final CellStyle.FillPattern LIGHT_TRELLIS
-
GRAY125
public static final CellStyle.FillPattern GRAY125
-
GRAY0625
public static final CellStyle.FillPattern GRAY0625
-
-
Method Detail
-
values
public static CellStyle.FillPattern[] 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 (CellStyle.FillPattern c : CellStyle.FillPattern.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CellStyle.FillPattern 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
-
-