Name | Description |
---|---|
IO | System Wide Functions |
Name | Signature and Synopsis |
---|---|
currentTimeMillis | long currentTimeMillis() Return currentTime in millis |
debugOut | void debugOut (String str) Outputs the String passed to the USER sink. |
exec | void 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. |
getGlobalVariableAsBoolean | boolean getGlobalVariableAsBoolean (String propertyKey, boolean defaultValue) Returns the requested global variable's value as a boolean. |
getGlobalVariableAsDouble | double getGlobalVariableAsDouble (String propertyKey, double defaultValue) Returns the requested global variable's value as a double. |
getGlobalVariableAsInt | int getGlobalVariableAsInt (String propertyKey, int defaultValue) Returns the requested global variable's value as an int. |
getGlobalVariableAsLong | long getGlobalVariableAsLong (String propertyKey, long defaultValue) Returns the requested global variable's value as a long. |
getGlobalVariableAsString | String getGlobalVariableAsString (String propertyKey, String defaultValue) Returns the requested global variable's value as a String. |
getSystemPropertyAsBoolean | boolean getSystemPropertyAsBoolean (String propertyKey, boolean defaultValue) Returns the requested System property value as a boolean. |
getSystemPropertyAsDouble | double getSystemPropertyAsDouble (String propertyKey, double defaultValue) Returns the requested System property value as an double. |
getSystemPropertyAsInt | int getSystemPropertyAsInt (String propertyKey, int defaultValue) Returns the requested System property value as an int. |
getSystemPropertyAsLong | long getSystemPropertyAsLong (String propertyKey, long defaultValue) Returns the requested System property value as a long. |
getSystemPropertyAsString | String getSystemPropertyAsString (String propertyKey, String defaultValue) Returns the requested System property value as a String. |