/**@class java.nio.file.StandardCopyOption
 implements java.nio.file.CopyOption

@extends java.lang.Enum

 Defines the standard copy options.

 @since 1.7
*/
var StandardCopyOption = {

/** Replace an existing file if it exists.
*/
REPLACE_EXISTING : "null",
/** Copy attributes to the new file.
*/
COPY_ATTRIBUTES : "null",
/** Move the file as an atomic file system operation.
*/
ATOMIC_MOVE : "null",
/**
*/
values : function(  ) {},

/**
*/
valueOf : function(  ) {},


};