Methods

Table 91 summarizes the methods in the InputCondition class.

Table 91. Member methods of the InputCondition class.

Member method Description Page
InputCondition() Creates an input-condition object. InputCondition()
copy() Copies the current input condition into the specified input-condition object. copy()

InputCondition()

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.

copy()

Copies the current input condition into the specified input-condition object.

Syntax

public void copy(InputCondition inputCond);

Parameters

inputCond
is a reference to the InputCondition object into which the current input condition is copied.

Return values

None.

Copyright IBM Corp. 1997, 2003