Package com.grapecity.documents.excel
Enum Class SpecialCellType
- All Implemented Interfaces:
Serializable,Comparable<SpecialCellType>,Constable
Specifies the type of cells.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCells 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
Modifier and TypeMethodDescriptionstatic SpecialCellTypeforValue(int value) intgetValue()static SpecialCellTypeReturns the enum constant of this class with the specified name.static SpecialCellType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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. Use the SpecialCellsValue enumeration to filter values by data types. -
Formulas
Cells containing formulas. Use the SpecialCellsValue enumeration to filter formulas by return types. -
LastCell
The last visible cell in the used range of the worksheet of 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. -
MergedCells
Merged cells that intersects with the specified range. -
Tags
Cells containing tags in 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 nameNullPointerException- if the argument is null
-
getValue
public int getValue() -
forValue
-