Package javascript.util.fsa
Interface FileSystemDirectoryHandle
-
- All Superinterfaces:
FileSystemHandle
public interface FileSystemDirectoryHandle extends FileSystemHandle
The simulation of the FileSystemDirectoryHandle object- Author:
- gianpiero.diblasi
-
-
Field Summary
-
Fields inherited from interface javascript.util.fsa.FileSystemHandle
kind, name
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static voidentries(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<def.js.Array<FileSystemHandle>> apply)Utility method to simulate the entries method in FileSystemDirectoryHandlestatic voidentriesIterator(FileSystemDirectoryHandle handle, simulation.js.$Apply_2_Void<java.lang.String,FileSystemHandle> apply)Utility method to simulate the entries method in FileSystemDirectoryHandledef.js.Promise<FileSystemDirectoryHandle>getDirectoryHandle(java.lang.String name, FileSystemHandleGetOptions options)def.js.Promise<FileSystemFileHandle>getFileHandle(java.lang.String name, FileSystemHandleGetOptions options)static voidkeys(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<def.js.Array<java.lang.String>> apply)Utility method to simulate the keys method in FileSystemDirectoryHandlestatic voidkeysIterator(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<java.lang.String> apply)Utility method to simulate the keys method in FileSystemDirectoryHandledef.js.Promise<java.lang.Void>removeEntry(java.lang.String name, FileSystemHandleRemoveOptions options)def.js.Promise<def.js.Array<java.lang.String>>resolve(FileSystemHandle possibleDescendant)static voidvalues(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<def.js.Array<FileSystemHandle>> apply)Utility method to simulate the values method in FileSystemDirectoryHandlestatic voidvaluesIterator(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<FileSystemHandle> apply)Utility method to simulate the values method in FileSystemDirectoryHandle-
Methods inherited from interface javascript.util.fsa.FileSystemHandle
isSameEntry
-
-
-
-
Method Detail
-
getDirectoryHandle
def.js.Promise<FileSystemDirectoryHandle> getDirectoryHandle(java.lang.String name, FileSystemHandleGetOptions options)
-
getFileHandle
def.js.Promise<FileSystemFileHandle> getFileHandle(java.lang.String name, FileSystemHandleGetOptions options)
-
removeEntry
def.js.Promise<java.lang.Void> removeEntry(java.lang.String name, FileSystemHandleRemoveOptions options)
-
resolve
def.js.Promise<def.js.Array<java.lang.String>> resolve(FileSystemHandle possibleDescendant)
-
entries
static void entries(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<def.js.Array<FileSystemHandle>> apply)
Utility method to simulate the entries method in FileSystemDirectoryHandle- Parameters:
handle- The handleapply- The method to call on the obtained entries
-
entriesIterator
static void entriesIterator(FileSystemDirectoryHandle handle, simulation.js.$Apply_2_Void<java.lang.String,FileSystemHandle> apply)
Utility method to simulate the entries method in FileSystemDirectoryHandle- Parameters:
handle- The handleapply- The method to call on the obtained entries
-
keys
static void keys(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<def.js.Array<java.lang.String>> apply)
Utility method to simulate the keys method in FileSystemDirectoryHandle- Parameters:
handle- The handleapply- The method to call on the obtained keys
-
keysIterator
static void keysIterator(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<java.lang.String> apply)
Utility method to simulate the keys method in FileSystemDirectoryHandle- Parameters:
handle- The handleapply- The method to call on the obtained keys
-
values
static void values(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<def.js.Array<FileSystemHandle>> apply)
Utility method to simulate the values method in FileSystemDirectoryHandle- Parameters:
handle- The handleapply- The method to call on the obtained values
-
valuesIterator
static void valuesIterator(FileSystemDirectoryHandle handle, simulation.js.$Apply_1_Void<FileSystemHandle> apply)
Utility method to simulate the values method in FileSystemDirectoryHandle- Parameters:
handle- The handleapply- The method to call on the obtained values
-
-