package org.simplx.args; /** * Used to specify which actions to take when a specified directory is missing. * * @author Ken Arnold * @see MainArgs#parseDirectory(String, String, String, MissingDirAction) */ public enum MissingDirAction { /** Do nothing. */ NONE, /** Throw an exception. */ EXCEPTION, /** Create the directory. */ CREATE }