Package com.anylogic.engine.database
- java.lang.Object
- com.anylogic.engine.database.CodeValue
- All Implemented Interfaces:
Serializable
public class CodeValue extends Object implements Serializable
Class containing some executable action / evaluatable expression code inside.
- Author:
- AnyLogic North America, LLC https://anylogic.com
- See Also:
- Serialized Form
Constructor | Description |
---|---|
CodeValue |
Creates new expression / action descriptor
|
public CodeValue(Utilities owner, String code)
Creates new expression / action descriptor
- Parameters:
owner
- agent / experiment context, this action will be executed incode
- java code of expression / action
public <T> T execute(Object... argDescriptors)
Executes/evaluates the given code, e.g.
If provided, uses the given arguments, specified in the form of pair: name, value. In the following example:
the code will operate with variables agent and index of types Agent and Integer
executeExpression( "exponential( 10 )" )
.If provided, uses the given arguments, specified in the form of pair: name, value. In the following example:
codeValue.execute( "agent", agent, "index", i - 1 )
the code will operate with variables agent and index of types Agent and Integer
- Parameters:
argDescriptors
- array of pairs: argName1, argValue1, argName2, argValue2, ...- Returns:
- evaluated expression result (if this is an expression, not action)
public <T> T execute(Class<T> returnType, Object... argDescriptors)
public String getCode()
Returns the original code string contained in this object
- Returns:
- java code of expression / action