Package org.teiid.file
Interface VirtualFile
-
- All Known Implementing Classes:
JavaVirtualFile
public interface VirtualFile
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.teiid.core.types.InputStreamFactorycreateInputStreamFactory()longgetCreationTime()longgetLastModified()StringgetName()longgetSize()InputStreamopenInputStream(boolean lock)OutputStreamopenOutputStream(boolean lock)
-
-
-
Method Detail
-
getName
String getName()
-
createInputStreamFactory
org.teiid.core.types.InputStreamFactory createInputStreamFactory()
-
openInputStream
InputStream openInputStream(boolean lock) throws IOException
- Throws:
IOException
-
openOutputStream
OutputStream openOutputStream(boolean lock) throws IOException
- Throws:
IOException
-
getLastModified
long getLastModified()
-
getCreationTime
long getCreationTime()
-
getSize
long getSize()
-
-