public final class FileOpenSource extends FileSource
Represents a file source for opening.
Constructor and Description |
---|
FileOpenSource(String filePath)
Initializes a new instance of the
FileOpenSource class. |
Modifier and Type | Method and Description |
---|---|
String |
getFilePath()
Gets the file path to open.
|
StreamContainer |
getStreamContainer()
Gets the stream container.
|
boolean |
isTemporal()
Gets a value indicating whether file will be temporal.
|
public FileOpenSource(String filePath)
Initializes a new instance of the FileOpenSource
class.
filePath
- The file path to open.public String getFilePath()
Gets the file path to open.
Value: The file path to open.public boolean isTemporal()
Gets a value indicating whether file will be temporal.
Value:true
if file will be temporal; otherwise, false
.isTemporal
in class FileSource
true
if file will be temporal; otherwise, false
.public StreamContainer getStreamContainer()
Gets the stream container.
getStreamContainer
in class Source
Use with caution. You will need to dispose the stream container after retrieval.