Package org.teiid.query.metadata
Interface VirtualFile
-
- All Known Implementing Classes:
JBossVirtualFile,NioVirtualFile
public interface VirtualFileRepresents a VDB File
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexists()VirtualFilegetChild(String string)List<VirtualFile>getFileChildrenRecursively()StringgetName()StringgetPathName()longgetSize()booleanisFile()InputStreamopenStream()
-
-
-
Method Detail
-
openStream
InputStream openStream() throws IOException
- Throws:
IOException
-
getSize
long getSize()
-
getName
String getName()
-
getFileChildrenRecursively
List<VirtualFile> getFileChildrenRecursively() throws IOException
- Throws:
IOException
-
isFile
boolean isFile()
-
getPathName
String getPathName()
-
getChild
VirtualFile getChild(String string)
-
exists
boolean exists()
-
-