Enum Class SpecialCellType
Enum Constant Summary
Enum Constants
Cells of any format condition in the specified range.
Cells having validation criteria in the specified range.
Empty cells in the specified range.
Cells containing notes in the specified range.
Cells containing constants.
Cells containing formulas.
The last visible cell in the used range of the worksheet of the specified range.
Merged cells that intersects with the specified range.
Cells having the same format as the top-left cell of the specified range.
Cells having the same validation criteria as the top-left cell of the specified range.
Cells containing tags in the specified range.
All visible cells in the specified range.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
int
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
AllValidation
Cells having validation criteria in the specified range.
Blanks
Empty cells in the specified range.
Constants
Cells containing constants. Use the SpecialCellsValue enumeration to filter values by data types.
LastCell
The last visible cell in the used range of the worksheet 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.
MergedCells
Merged cells that intersects with the specified range.
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (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 class has no constant with the specified name
NullPointerException
- if the argument is null
getValue
public int getValue ()