public enum SpecialCellType extends java.lang.Enum<SpecialCellType>
| Enum Constant and Description |
|---|
AllFormatConditions
Cells of any format condition in the specified range.
|
AllValidation
Cells having validation criteria in the specified range.
|
Blanks
Empty cells in the specified range.
|
Comments
Cells containing notes in the specified range.
|
Constants
Cells containing constants.
|
Formulas
Cells containing formulas.
|
LastCell
The last visible cell in the used range of the worksheet of the specified range.
|
MergedCells
Merged cells that intersects with the specified range.
|
SameFormatConditions
Cells having the same format as the top-left cell of the specified range.
|
SameValidation
Cells having the same validation criteria as the top-left cell of the specified range.
|
Visible
All visible cells in the specified range.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
static SpecialCellType |
forValue(int value) |
int |
getValue() |
static SpecialCellType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpecialCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialCellType AllFormatConditions
public static final SpecialCellType AllValidation
public static final SpecialCellType Blanks
public static final SpecialCellType Comments
public static final SpecialCellType Constants
public static final SpecialCellType Formulas
public static final SpecialCellType LastCell
public static final SpecialCellType SameFormatConditions
public static final SpecialCellType SameValidation
public static final SpecialCellType Visible
public static final SpecialCellType MergedCells
public static final int SIZE
public static SpecialCellType[] values()
for (SpecialCellType c : SpecialCellType.values()) System.out.println(c);
public static SpecialCellType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static SpecialCellType forValue(int value)