public static enum CellStyle.FillPattern extends Enum<CellStyle.FillPattern>
Enum Constant and 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 |
Modifier and Type | Method and 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.
|
public static final CellStyle.FillPattern NONE
public static final CellStyle.FillPattern SOLID
public static final CellStyle.FillPattern MEDIUM_GRAY
public static final CellStyle.FillPattern DARK_GRAY
public static final CellStyle.FillPattern LIGHT_GRAY
public static final CellStyle.FillPattern DARK_HORIZONTAL
public static final CellStyle.FillPattern DARK_VERTICAL
public static final CellStyle.FillPattern DARK_DOWN
public static final CellStyle.FillPattern DARK_UP
public static final CellStyle.FillPattern DARK_GRID
public static final CellStyle.FillPattern DARK_TRELLIS
public static final CellStyle.FillPattern LIGHT_HORIZONTAL
public static final CellStyle.FillPattern LIGHT_VERTICAL
public static final CellStyle.FillPattern LIGHT_DOWN
public static final CellStyle.FillPattern LIGHT_UP
public static final CellStyle.FillPattern LIGHT_GRID
public static final CellStyle.FillPattern LIGHT_TRELLIS
public static final CellStyle.FillPattern GRAY125
public static final CellStyle.FillPattern GRAY0625
public static CellStyle.FillPattern[] values()
for (CellStyle.FillPattern c : CellStyle.FillPattern.values()) System.out.println(c);
public static CellStyle.FillPattern valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.