Interface FileSystemDirectoryHandle

  • All Superinterfaces:
    FileSystemHandle

    public interface FileSystemDirectoryHandle
    extends FileSystemHandle
    The simulation of the FileSystemDirectoryHandle object
    Author:
    gianpiero.diblasi
    • Method Detail

      • 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 handle
        apply - 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 handle
        apply - 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 handle
        apply - 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 handle
        apply - 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 handle
        apply - 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 handle
        apply - The method to call on the obtained values