congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PointIteratorFromStructureData.close
Code IndexAdd Tabnine to your IDE (free)

How to use
close
method
in
ucar.nc2.ft.point.PointIteratorFromStructureData

Best Java code snippets using ucar.nc2.ft.point.PointIteratorFromStructureData.close (Showing top 2 results out of 315)

origin: Unidata/thredds

@Override
public void close() {
 System.out.printf("BufrRecordIterator passed %d features super claims %d%n", countHere, getInfo().nfeatures);
 super.close();
}
origin: Unidata/thredds

@Override
public boolean hasNext() {
 try {
  while (true) {
   StructureData sdata = nextStructureData();
   if (sdata == null) break;
   feature = makeFeature(structIter.getCurrentRecno(), sdata);
   if (feature == null) continue;
   if (feature.getLocation().isMissing()) {
    continue;
   }
   if (filter == null || filter.filter(feature))
    return true;
  }
  // all done
  feature = null;
  close();
  return false;
 } catch (IOException ioe) {
  throw new RuntimeException(ioe);
 }
}
ucar.nc2.ft.pointPointIteratorFromStructureDataclose

Popular methods of PointIteratorFromStructureData

  • calcBounds
  • finishCalcBounds
  • makeFeature
  • nextStructureData
  • finish

Popular in Java

  • Making http post requests using okhttp
  • findViewById (Activity)
  • runOnUiThread (Activity)
  • getApplicationContext (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Collectors (java.util.stream)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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