Package org.teiid.query.metadata
Interface VirtualFile
-
- All Known Implementing Classes:
JBossVirtualFile
,NioVirtualFile
public interface VirtualFile
Represents a VDB File
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
exists()
VirtualFile
getChild(String string)
List<VirtualFile>
getFileChildrenRecursively()
String
getName()
String
getPathName()
long
getSize()
boolean
isFile()
InputStream
openStream()
-
-
-
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()
-
-