Package org.openscience.cdk.io.formats
Class FingerprintFormat
- java.lang.Object
- 
- org.openscience.cdk.io.formats.AbstractResourceFormat
- 
- org.openscience.cdk.io.formats.FingerprintFormat
 
 
- 
- All Implemented Interfaces:
- IChemFormat,- IResourceFormat
 
 public class FingerprintFormat extends AbstractResourceFormat implements IChemFormat - Author:
- Miguel Rojas
- Source code:
- main
- Belongs to CDK module:
- ioformats
 
- 
- 
Constructor SummaryConstructors Constructor Description FingerprintFormat()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFormatName()Returns a one-lined format name of the format.static IResourceFormatgetInstance()StringgetMIMEType()Returns the accepted MIME type for this format.String[]getNameExtensions()Returns an array of common resource name extensions.StringgetPreferredNameExtension()Returns the preferred resource name extension.StringgetReaderClassName()Returns the class name of the CDK Reader for this format.intgetRequiredDataFeatures()Returns an integer indicating the data features that this format requires.intgetSupportedDataFeatures()Returns an integer indicating the data features that this format supports.StringgetWriterClassName()Returns the class name of the CDK Writer for this format.booleanisXMLBased()Indicates if the format is an XML-based language.- 
Methods inherited from class org.openscience.cdk.io.formats.AbstractResourceFormatequals, hashCode
 
- 
 
- 
- 
- 
Method Detail- 
getInstancepublic static IResourceFormat getInstance() 
 - 
getFormatNamepublic String getFormatName() Returns a one-lined format name of the format.- Specified by:
- getFormatNamein interface- IResourceFormat
 
 - 
getMIMETypepublic String getMIMEType() Returns the accepted MIME type for this format.- Specified by:
- getMIMETypein interface- IResourceFormat
- Returns:
- null if no MIME type has been accepted on
 
 - 
getPreferredNameExtensionpublic String getPreferredNameExtension() Returns the preferred resource name extension.- Specified by:
- getPreferredNameExtensionin interface- IResourceFormat
 
 - 
getNameExtensionspublic String[] getNameExtensions() Returns an array of common resource name extensions.- Specified by:
- getNameExtensionsin interface- IResourceFormat
 
 - 
getReaderClassNamepublic String getReaderClassName() Returns the class name of the CDK Reader for this format.- Specified by:
- getReaderClassNamein interface- IChemFormat
- Returns:
- null if no CDK Reader is available.
 
 - 
getWriterClassNamepublic String getWriterClassName() Returns the class name of the CDK Writer for this format.- Specified by:
- getWriterClassNamein interface- IChemFormat
- Returns:
- null if no CDK Writer is available.
 
 - 
isXMLBasedpublic boolean isXMLBased() Indicates if the format is an XML-based language.- Specified by:
- isXMLBasedin interface- IResourceFormat
- Returns:
- if the format is XML-based.
 
 - 
getSupportedDataFeaturespublic int getSupportedDataFeatures() Returns an integer indicating the data features that this format supports. The integer is composed as explained in DataFeatures. May be set to DataFeatures.NONE as default.- Specified by:
- getSupportedDataFeaturesin interface- IChemFormat
- See Also:
- DataFeatures
 
 - 
getRequiredDataFeaturespublic int getRequiredDataFeatures() Returns an integer indicating the data features that this format requires. For example, the XYZ format requires 3D coordinates.- Specified by:
- getRequiredDataFeaturesin interface- IChemFormat
- See Also:
- DataFeatures
 
 
- 
 
-