shared
Class GlobalOptions
java.lang.Object
|
+--shared.GlobalOptions
- public class GlobalOptions
- extends java.lang.Object
This file processes a series of static, global options used by the MLC++
library. These options are read as super-nuisance options--they are never
prompted from the user. Some of these options are used BEFORE main() executes.
Therefore, option values read on the command-line are not yet available. These
options are given values directly from the environment at init time, and may be
reset to command-line values once main() executes.
|
Field Summary |
static boolean |
allowUnknownPredictions
TRUE if unknown values are valid for predictions on data. |
static int |
debugLevel
The level of debugging options that will be performed. |
static boolean |
dribble
TRUE if dribble messages should be displayed, FALSE otherwise. |
static int |
logLevel
The level of logs that will be displayed. |
static int |
printPerfPrecision
The amount of precision used in performance displays. |
static boolean |
showLogOrigin
TRUE if the origin of a log entry is to be displayed, FALSE otherwise. |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
logLevel
public static int logLevel
- The level of logs that will be displayed.
debugLevel
public static int debugLevel
- The level of debugging options that will be performed.
showLogOrigin
public static boolean showLogOrigin
- TRUE if the origin of a log entry is to be displayed, FALSE otherwise.
allowUnknownPredictions
public static boolean allowUnknownPredictions
- TRUE if unknown values are valid for predictions on data.
dribble
public static boolean dribble
- TRUE if dribble messages should be displayed, FALSE otherwise.
printPerfPrecision
public static int printPerfPrecision
- The amount of precision used in performance displays.
GlobalOptions
public GlobalOptions()