Package de.tilman_neumann.util
Class ConfigUtil
- java.lang.Object
-
- de.tilman_neumann.util.ConfigUtil
-
public class ConfigUtil extends Object
Global configuration tasks.- Author:
- Tilman Neumann
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONF_ROOTThe base folder for all configuration files in this project.static StringFILE_SEPARATORFile separator used on this OS.static StringJAVA_CLASS_PATHJava class pathstatic StringJAVA_LIBRARY_PATHJava library pathstatic StringJAVA_TMP_DIRJava temp directorystatic intNUMBER_OF_PROCESSORSnumber of processors to use for parallel implementationsstatic StringPATH_SEPARATORPath separator used on this OS.static StringPROJECT_ROOTThe root directory of the current project.static StringUSER_HOMEuser home directorystatic booleanverbose
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidinitProject()Project configuration.
-
-
-
Field Detail
-
verbose
public static boolean verbose
-
FILE_SEPARATOR
public static String FILE_SEPARATOR
File separator used on this OS.
-
PATH_SEPARATOR
public static String PATH_SEPARATOR
Path separator used on this OS.
-
PROJECT_ROOT
public static String PROJECT_ROOT
The root directory of the current project.
-
CONF_ROOT
public static String CONF_ROOT
The base folder for all configuration files in this project.
-
JAVA_CLASS_PATH
public static String JAVA_CLASS_PATH
Java class path
-
JAVA_LIBRARY_PATH
public static String JAVA_LIBRARY_PATH
Java library path
-
JAVA_TMP_DIR
public static String JAVA_TMP_DIR
Java temp directory
-
USER_HOME
public static String USER_HOME
user home directory
-
NUMBER_OF_PROCESSORS
public static int NUMBER_OF_PROCESSORS
number of processors to use for parallel implementations
-
-