Package com.enonic.xp.vfs
Interface VirtualFile
-
@Beta public interface VirtualFile
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
exists()
com.google.common.io.ByteSource
getByteSource()
com.google.common.io.CharSource
getCharSource()
java.util.List<VirtualFile>
getChildren()
java.lang.String
getName()
VirtualFilePath
getPath()
java.net.URL
getUrl()
boolean
isFile()
boolean
isFolder()
VirtualFile
resolve(VirtualFilePath path)
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getPath
VirtualFilePath getPath()
-
getUrl
java.net.URL getUrl()
-
isFolder
boolean isFolder()
-
isFile
boolean isFile()
-
getChildren
java.util.List<VirtualFile> getChildren()
-
getCharSource
com.google.common.io.CharSource getCharSource()
-
getByteSource
com.google.common.io.ByteSource getByteSource()
-
exists
boolean exists()
-
resolve
VirtualFile resolve(VirtualFilePath path)
-
-