Package gov.nasa.worldwind.data
Class RPFRasterReader
- java.lang.Object
-
- gov.nasa.worldwind.avlist.AVListImpl
-
- gov.nasa.worldwind.data.AbstractDataRasterReader
-
- gov.nasa.worldwind.data.RPFRasterReader
-
- All Implemented Interfaces:
AVList,DataRasterReader
public class RPFRasterReader extends AbstractDataRasterReader
-
-
Field Summary
-
Fields inherited from class gov.nasa.worldwind.data.AbstractDataRasterReader
description, mimeTypes, suffixes
-
-
Constructor Summary
Constructors Constructor Description RPFRasterReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanRead(java.lang.Object source, AVList params)Indicates whether this reader can read a specified data source.protected booleandoCanRead(java.lang.Object source, AVList params)protected DataRaster[]doRead(java.lang.Object source, AVList params)protected voiddoReadMetadata(java.lang.Object source, AVList params)-
Methods inherited from class gov.nasa.worldwind.data.AbstractDataRasterReader
canReadSuffix, getDescription, getMimeTypes, getSuffixes, isElevationsRaster, isImageryRaster, read, readMetadata, validateMetadata
-
Methods inherited from class gov.nasa.worldwind.avlist.AVListImpl
addPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getBooleanValue, getBooleanValue, getChangeSupport, getDoubleValue, getDoubleValue, getEntries, getIntegerValue, getIntegerValue, getLongValue, getLongValue, getRestorableStateForAVPair, getStringValue, getStringValue, getStringValue, getValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValue, setValues
-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface gov.nasa.worldwind.avlist.AVList
addPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getEntries, getStringValue, getValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValue, setValues
-
-
-
-
Method Detail
-
canRead
public boolean canRead(java.lang.Object source, AVList params)Description copied from class:AbstractDataRasterReaderIndicates whether this reader can read a specified data source. The source may be one of the following:FileStringInputStreamURL
- Specified by:
canReadin interfaceDataRasterReader- Overrides:
canReadin classAbstractDataRasterReader- Parameters:
source- the source to examine.params- parameters required by certain reader implementations. May be null for most readers.- Returns:
- true if this reader can read the data source, otherwise false.
-
doCanRead
protected boolean doCanRead(java.lang.Object source, AVList params)- Specified by:
doCanReadin classAbstractDataRasterReader
-
doRead
protected DataRaster[] doRead(java.lang.Object source, AVList params) throws java.io.IOException
- Specified by:
doReadin classAbstractDataRasterReader- Throws:
java.io.IOException
-
doReadMetadata
protected void doReadMetadata(java.lang.Object source, AVList params) throws java.io.IOException- Specified by:
doReadMetadatain classAbstractDataRasterReader- Throws:
java.io.IOException
-
-