/**@class java.nio.file.CopyOption
 An object that configures how to copy or move a file.

 <p> Objects of this type may be used with the {@link java.nio.file.Files#copy(Path,Path,CopyOption[]) java.nio.file.Files.copy(Path,Path,CopyOption...)},
 {@link java.nio.file.Files#copy(java.io.InputStream,Path,CopyOption[])
 java.nio.file.Files.copy(InputStream,Path,CopyOption...)} and {@link java.nio.file.Files#move
 java.nio.file.Files.move(Path,Path,CopyOption...)} methods to configure how a file is
 copied or moved.

 <p> The {@link java.nio.file.StandardCopyOption} enumeration type defines the
 <i>standard</i> options.

 @since 1.7
*/
var CopyOption = {


};