Package org.orekit.data
Class PythonAbstractListCrawler<T>
- java.lang.Object
-
- org.orekit.data.AbstractListCrawler<T>
-
- org.orekit.data.PythonAbstractListCrawler<T>
-
- All Implemented Interfaces:
DataProvider
public class PythonAbstractListCrawler<T> extends AbstractListCrawler<T>
-
-
Field Summary
-
Fields inherited from interface org.orekit.data.DataProvider
ZIP_ARCHIVE_PATTERN
-
-
Constructor Summary
Constructors Constructor Description PythonAbstractListCrawler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectString
getBaseName(T input)
Get the base name of an input.String
getCompleteName(T input)
Get the complete name of a input.InputStream
getStream(T input)
Get the stream to read from an input.ZipJarCrawler
getZipJarCrawler(T input)
Get a zip/jar crawler for an input.void
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to object-
Methods inherited from class org.orekit.data.AbstractListCrawler
addInput, feed, getInputs
-
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
getCompleteName
public String getCompleteName(T input)
Get the complete name of a input.- Specified by:
getCompleteName
in classAbstractListCrawler<T>
- Parameters:
input
- input to consider- Returns:
- complete name of the input
-
getBaseName
public String getBaseName(T input)
Get the base name of an input.- Specified by:
getBaseName
in classAbstractListCrawler<T>
- Parameters:
input
- input to consider- Returns:
- base name of the input
-
getZipJarCrawler
public ZipJarCrawler getZipJarCrawler(T input)
Get a zip/jar crawler for an input.- Specified by:
getZipJarCrawler
in classAbstractListCrawler<T>
- Parameters:
input
- input to consider- Returns:
- zip/jar crawler for an input
-
getStream
public InputStream getStream(T input) throws IOException
Get the stream to read from an input.- Specified by:
getStream
in classAbstractListCrawler<T>
- Parameters:
input
- input to read from- Returns:
- stream to read the content of the input
- Throws:
IOException
- if the input cannot be opened for reading
-
-