public abstract class AbstractSearchExpression
extends java.lang.Object
Constructor and Description |
---|
AbstractSearchExpression() |
Modifier and Type | Method and Description |
---|---|
void |
addControlParameterValue(java.lang.String controlParameterName,
java.lang.String controlParameterValue)
Adds new value for a given control parameter in the SelectionCriteria
object.
|
java.lang.String |
getControlParameterValue(java.lang.String controlParameterName)
Returns the first value in the given control parameter of the current
SelectionCriteria object.
|
java.util.List |
getControlParameterValues(java.lang.String controlParameterName)
Returns a list of values for the given control parameter of the current
SelectionCriteria object.
|
void |
removeControlParameterValue(java.lang.String controlParameterName,
java.lang.String controlParameterValue)
Removes an existing value for a given control parameter in the
SelectionCriteria object.
|
void |
resetControlParameter(java.lang.String controlParameterName)
Clears out the content and resets the given control parameter of the
current SelectionCriteria object.
|
void |
setControlParameterValue(java.lang.String controlParameterName,
java.lang.String controlParameterValue)
Assigns the given value to the first value in the given control parameter
of the current SelectionCriteria object.
|
public java.lang.String getControlParameterValue(java.lang.String controlParameterName)
controlParameterName
- Name of the control parameterpublic java.util.List getControlParameterValues(java.lang.String controlParameterName)
controlParameterName
- Name of the control parameterpublic void setControlParameterValue(java.lang.String controlParameterName, java.lang.String controlParameterValue)
controlParameterName
- Name of the control parametercontrolParameterValue
- Value of the control parameterpublic void addControlParameterValue(java.lang.String controlParameterName, java.lang.String controlParameterValue)
controlParameterName
- Name of the control parametercontrolParameterValue
- Additional value to be addedpublic void removeControlParameterValue(java.lang.String controlParameterName, java.lang.String controlParameterValue)
controlParameterName
- Name of the control parametercontrolParameterValue
- Value to be removedpublic void resetControlParameter(java.lang.String controlParameterName)
controlParameterName
- Name of the control parameter