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 StringgetParameterGroup()Get the parameter groupStringgetParameterName()Get the parameter nameStringgetParameterValue()Get the parameter valuebooleangetParameterValueAsBoolean()Get the parameter value as a booleanG2EngineContext.SystemParameterContextsetParameterGroup(String group)Sets the parameter group.G2EngineContext.SystemParameterContextsetParameterName(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.
-
-