Package adams.data.spreadsheet
Class FindCellsParameters
- java.lang.Object
-
- adams.data.spreadsheet.FindCellsParameters
-
public class FindCellsParameters extends Object
Container class for search parameters.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Constructor Summary
Constructors Constructor Description FindCellsParameters(String search)Initializes the iterator.FindCellsParameters(String search, boolean caseSensitive, boolean regExp)Initializes the iterator.
-
-
-
Constructor Detail
-
FindCellsParameters
public FindCellsParameters(String search)
Initializes the iterator. Case-insensitive search, no regexp.- Parameters:
search- the search string
-
FindCellsParameters
public FindCellsParameters(String search, boolean caseSensitive, boolean regExp)
Initializes the iterator.- Parameters:
search- the search stringcaseSensitive- whether search is case-sensitive (ignored when using regexp)regExp- whether the search string is a regular expression
-
-