Tabnine Logo
CellFinder.findLabelCell
Code IndexAdd Tabnine to your IDE (free)

How to use
findLabelCell
method
in
jxl.biff.CellFinder

Best Java code snippets using jxl.biff.CellFinder.findLabelCell (Showing top 4 results out of 315)

origin: net.sourceforge.jexcelapi/jxl

/**
 * Gets the cell whose contents match the string passed in.
 * If no match is found, then null is returned.  The search is performed
 * on a row by row basis, so the lower the row number, the more
 * efficiently the algorithm will perform.  This method differs
 * from the findCell methods in that only cells with labels are
 * queried - all numerical cells are ignored.  This should therefore
 * improve performance.
 * 
 * @param contents the string to match
 * @return the Cell whose contents match the paramter, null if not found
 */
public LabelCell findLabelCell(String contents)
{
 CellFinder cellFinder = new CellFinder(this);
 return cellFinder.findLabelCell(contents);
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * Gets the cell whose contents match the string passed in.
 * If no match is found, then null is returned.  The search is performed
 * on a row by row basis, so the lower the row number, the more
 * efficiently the algorithm will perform.  This method differs
 * from the findCell methods in that only cells with labels are
 * queried - all numerical cells are ignored.  This should therefore
 * improve performance.
 *
 * @param  contents the string to match
 * @return the Cell whose contents match the paramter, null if not found
 */
public LabelCell findLabelCell(String contents)
{
 CellFinder cellFinder = new CellFinder(this);
 return cellFinder.findLabelCell(contents);
}
origin: com.hynnet/jxl

/**
 * Gets the cell whose contents match the string passed in.
 * If no match is found, then null is returned.  The search is performed
 * on a row by row basis, so the lower the row number, the more
 * efficiently the algorithm will perform.  This method differs
 * from the findCell methods in that only cells with labels are
 * queried - all numerical cells are ignored.  This should therefore
 * improve performance.
 * 
 * @param contents the string to match
 * @return the Cell whose contents match the paramter, null if not found
 */
public LabelCell findLabelCell(String contents)
{
 CellFinder cellFinder = new CellFinder(this);
 return cellFinder.findLabelCell(contents);
}
origin: com.hynnet/jxl

/**
 * Gets the cell whose contents match the string passed in.
 * If no match is found, then null is returned.  The search is performed
 * on a row by row basis, so the lower the row number, the more
 * efficiently the algorithm will perform.  This method differs
 * from the findCell methods in that only cells with labels are
 * queried - all numerical cells are ignored.  This should therefore
 * improve performance.
 *
 * @param  contents the string to match
 * @return the Cell whose contents match the paramter, null if not found
 */
public LabelCell findLabelCell(String contents)
{
 CellFinder cellFinder = new CellFinder(this);
 return cellFinder.findLabelCell(contents);
}
jxl.biffCellFinderfindLabelCell

Javadoc

Gets the cell whose contents match the string passed in. If no match is found, then null is returned. The search is performed on a row by row basis, so the lower the row number, the more efficiently the algorithm will perform. This method differs from the findCell methods in that only cells with labels are queried - all numerical cells are ignored. This should therefore improve performance.

Popular methods of CellFinder

  • <init>
  • findCell
    Gets the cell whose contents match the regular expressionstring passed in. If no match is found, the

Popular in Java

  • Start an intent from android
  • requestLocationUpdates (LocationManager)
  • getSupportFragmentManager (FragmentActivity)
  • getSharedPreferences (Context)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Option (scala)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now