Package com.grapecity.documents.excel
Enum Class FindLookIn
- All Implemented Interfaces:
Serializable,Comparable<FindLookIn>,Constable
Specifies the type of data to search.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSearches in Comments (xlNotes).Searches in formulas (xlFormulas).Searches in formulas.Searches in Texts (xlValues)Searches in Texts.Performs type sensitive search in values. -
Method Summary
Modifier and TypeMethodDescriptionstatic FindLookInforValue(int value) intgetValue()static FindLookInReturns the enum constant of this class with the specified name.static FindLookIn[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Formulas
Searches in formulas (xlFormulas). -
Texts
Searches in Texts (xlValues) -
Values
Performs type sensitive search in values. Supports double, string (Wildcard match is disabled), Date, bool, Calendar, and CalcError -
Comments
Searches in Comments (xlNotes). -
OnlyFormulas
Searches in formulas. If the HasFormula property of a cell is false, the cell will be skipped. -
TextsExcludeFormulaCell
Searches in Texts. If the HasFormula property of a cell is true, the cell will be skipped.
-
-
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
-