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 String
CONF_ROOT
The base folder for all configuration files in this project.static String
FILE_SEPARATOR
File separator used on this OS.static String
JAVA_CLASS_PATH
Java class pathstatic String
JAVA_LIBRARY_PATH
Java library pathstatic String
JAVA_TMP_DIR
Java temp directorystatic int
NUMBER_OF_PROCESSORS
number of processors to use for parallel implementationsstatic String
PATH_SEPARATOR
Path separator used on this OS.static String
PROJECT_ROOT
The root directory of the current project.static String
USER_HOME
user home directorystatic boolean
verbose
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
initProject()
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
-
-