System

Description

System Wide Functions

Categories

NameDescription
IOSystem Wide Functions

Functions

NameSignature and Synopsis
currentTimeMillislong currentTimeMillis()
Return currentTime in millis
debugOutvoid debugOut (String str)
Outputs the String passed to the USER sink.
execvoid exec(String command)
Executes the specified string command in a separate process. The command argument is parsed into tokens and then executed as a command in a separate process.
getGlobalVariableAsBooleanboolean getGlobalVariableAsBoolean (String propertyKey, boolean defaultValue)
Returns the requested global variable's value as a boolean.
getGlobalVariableAsDoubledouble getGlobalVariableAsDouble (String propertyKey, double defaultValue)
Returns the requested global variable's value as a double.
getGlobalVariableAsIntint getGlobalVariableAsInt (String propertyKey, int defaultValue)
Returns the requested global variable's value as an int.
getGlobalVariableAsLonglong getGlobalVariableAsLong (String propertyKey, long defaultValue)
Returns the requested global variable's value as a long.
getGlobalVariableAsStringString getGlobalVariableAsString (String propertyKey, String defaultValue)
Returns the requested global variable's value as a String.
getSystemPropertyAsBooleanboolean getSystemPropertyAsBoolean (String propertyKey, boolean defaultValue)
Returns the requested System property value as a boolean.
getSystemPropertyAsDoubledouble getSystemPropertyAsDouble (String propertyKey, double defaultValue)
Returns the requested System property value as an double.
getSystemPropertyAsIntint getSystemPropertyAsInt (String propertyKey, int defaultValue)
Returns the requested System property value as an int.
getSystemPropertyAsLonglong getSystemPropertyAsLong (String propertyKey, long defaultValue)
Returns the requested System property value as a long.
getSystemPropertyAsStringString getSystemPropertyAsString (String propertyKey, String defaultValue)
Returns the requested System property value as a String.