< prev index next >

src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedOpenOption.java

Print this page

        

*** 45,55 **** */ NOSHARE_WRITE(ExtendedOptions.NOSHARE_WRITE), /** * Prevent operations on the file that request delete access. */ ! NOSHARE_DELETE(ExtendedOptions.NOSHARE_DELETE); ExtendedOpenOption(ExtendedOptions.InternalOption<Void> option) { option.register(this); } } --- 45,60 ---- */ NOSHARE_WRITE(ExtendedOptions.NOSHARE_WRITE), /** * Prevent operations on the file that request delete access. */ ! NOSHARE_DELETE(ExtendedOptions.NOSHARE_DELETE), ! ! /** ! * DirectIO. ! */ ! DIRECT(ExtendedOptions.DIRECT); ExtendedOpenOption(ExtendedOptions.InternalOption<Void> option) { option.register(this); } }
< prev index next >