getMember
public T getMember(String name)
throws com.redwood.scheduler.api.scripting.NoSuchIdentifierException
Description copied from interface: com.redwood.scheduler.api.scripting.ScriptObject
Get the member named name, or throw an exception, when the member
does not exist.
When calling ScriptObject.getMember(String) via scripting it is required that
this implementation returns this when the argument name is
null.
ModuleScriptingObject makes it then possible to call <@link
#getMember(String)} directly in REL e.g.
columns.getMember('Area Code') or
parameters.getMember('Company')
- Specified by:
getMember in interface com.redwood.scheduler.api.scripting.ScriptObject
- Parameters:
name - the name of the member, or nul
- Returns:
- the member value.
- Throws:
com.redwood.scheduler.api.scripting.NoSuchIdentifierException - if the member does not exist.