System

Description

System Wide Functions

Categories

NameDescription
IDSystem Wide Functions
IOSystem Wide Functions

Functions

NameSignature and Synopsis
currentTimeMillislong currentTimeMillis()
Return currentTime in milliseconds
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.
execJavaObject execJava(String className, String method, String[] parameterTypes, Object object, Object[] parameters)
Executes the specified Java method with the object instance and parameters.
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.
nanoTimelong nanoTime()
The current value of the system timer, in nanoseconds. This does not reflect the current time.