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

How to use
getFileTypeDescription
method
in
ucar.nc2.iosp.IOServiceProvider

Best Java code snippets using ucar.nc2.iosp.IOServiceProvider.getFileTypeDescription (Showing top 3 results out of 315)

origin: Unidata/thredds

/**
 * Get a human-readable description for this file type.
 *
 * @return description of the file type
 * @see "http://www.unidata.ucar.edu/software/netcdf-java/formats/FileTypes.html"
 */
public String getFileTypeDescription() {
 if (spi != null) return spi.getFileTypeDescription();
 return "N/A";
}
origin: edu.ucar/cdm

/**
 * Get a human-readable description for this file type.
 *
 * @return description of the file type
 * @see "http://www.unidata.ucar.edu/software/netcdf-java/formats/FileTypes.html"
 */
public String getFileTypeDescription() {
 if (spi != null) return spi.getFileTypeDescription();
 return "N/A";
}
origin: edu.ucar/netcdf

/**
 * Get a human-readable description for this file type.
 *
 * @return description of the file type
 * @see "http://www.unidata.ucar.edu/software/netcdf-java/formats/FileTypes.html"
 */
public String getFileTypeDescription() {
 if (spi != null) return spi.getFileTypeDescription();
 return "N/A";
}
ucar.nc2.iospIOServiceProvidergetFileTypeDescription

Javadoc

Get a human-readable description for this file type.

Popular methods of IOServiceProvider

  • getFileTypeId
    Get a unique id for this file type.
  • close
    Close the file. It is the IOServiceProvider's job to close the file (even though it didnt open it),
  • getDetailInfo
    Show debug / underlying implementation details
  • getFileTypeVersion
    Get the version of this file type.
  • getStructureIterator
    Get the structure iterator. iosps with top level sequences must override
  • isValidFile
    Check if this is a valid file for this IOServiceProvider. You must make this method thread safe, ie
  • open
    Open existing file, and populate ncfile with it. This method is only called by the NetcdfFile constr
  • readData
    Read data from a top level Variable and return a memory resident Array. This Array has the same elem
  • readSection
    Allows reading sections of nested variables
  • readToByteChannel
    Read data from a top level Variable and send data to a WritableByteChannel. Must be in big-endian or
  • readToOutputStream
  • sendIospMessage
    A way to communicate arbitrary information to an iosp.
  • readToOutputStream,
  • sendIospMessage,
  • syncExtend,
  • toStringDebug,
  • reacquire,
  • release

Popular in Java

  • Reading from database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • compareTo (BigDecimal)
  • getSharedPreferences (Context)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top 17 Free Sublime Text 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