Package com.senzing.g2.engine.plugin
Class G2EngineContext.SystemParameterContext
- java.lang.Object
-
- com.senzing.g2.engine.plugin.G2EngineContext.SystemParameterContext
-
- Enclosing interface:
- G2EngineContext
public static class G2EngineContext.SystemParameterContext extends Object
Context for retrieving system parameters
-
-
Constructor Summary
Constructors Constructor Description SystemParameterContext()
Constructs the system parameter context
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getParameterGroup()
Get the parameter groupString
getParameterName()
Get the parameter nameString
getParameterValue()
Get the parameter valueboolean
getParameterValueAsBoolean()
Get the parameter value as a booleanG2EngineContext.SystemParameterContext
setParameterGroup(String group)
Sets the parameter group.G2EngineContext.SystemParameterContext
setParameterName(String name)
Sets the parameter name.
-
-
-
Method Detail
-
getParameterGroup
public String getParameterGroup()
Get the parameter group- Returns:
- The parameter group.
-
setParameterGroup
public G2EngineContext.SystemParameterContext setParameterGroup(String group)
Sets the parameter group.- Parameters:
group
- The parameter group name.- Returns:
- A reference to this instance.
-
getParameterName
public String getParameterName()
Get the parameter name- Returns:
- The parameter name.
-
setParameterName
public G2EngineContext.SystemParameterContext setParameterName(String name)
Sets the parameter name.- Parameters:
name
- The parameter name.- Returns:
- A reference to this instance.
-
getParameterValue
public String getParameterValue()
Get the parameter value- Returns:
- The parameter value.
-
getParameterValueAsBoolean
public boolean getParameterValueAsBoolean()
Get the parameter value as a boolean- Returns:
- The parameter value as a boolean.
-
-