1.) Enum StandardOpenOption: What is the difference between CREATE and CREATE_NEW? 2.)
import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
Will it import only one static variable? (Till now, I've only ever seen the whole class imported in all cases.) Is it obligatory to use "static" keyword in this case?