Creates an input-condition object.
Syntax
public InputCondition();
public InputCondition(String operator, boolean isDyn, int type,
String specificVal);
Parameters
- isDyn
- Indicates whether to obtain the value of the specific-value
property dynamically; the value of this parameter initializes the
isDynamic member variable (isDynamic).
- operator
- Is the operator that specifies the kind of comparison to make;
the value of this parameter initializes the operatorType
member variable (operatorType).
- specificVal
- Is the specific value of the input condition; the value of this
parameter initializes the specificValue member variable
(specificValue).
- type
- Specifies the data type of the specific value; the value of
this parameter initializes the typeOfSpecificValue member
variable (typeOfSpecificValue).
Return values
A newly instantiated InputCondition object.
