Member variables

Table 90 summarizes the member variables in the InputCondition class.

Table 90. Member variables of the InputCondition class.

Member variable Description Page
isDynamic Specifies whether Business Object Wizard should check the value of the specific-value property before it makes the input condition's comparison. isDynamic
operatorType Specifies the operator type for the input condition. operatorType
specificValue Specifies the value to compare with the agent property's value. specificValue
typeOfSpecificValue Specifies the data type of the input condition's specific value. typeOfSpecificValue

isDynamic

Specifies whether Business Object Wizard should check the value of the specific-value property before making the input condition's comparison.

Type

public boolean isDynamic

Notes

When the isDynamic member variable is true, Business Object Wizard obtains the value of the property that the specificValue member variable specifies before it performs the comparison with the agent property's value. If specificValue contains a constant, isDynamic should be set to false.

operatorType

Specifies the operator type for the input condition.

Type

public String operatorType

Notes

The operatorType specifies the kind of comparison that Business Object Wizard makes between the agent property's value and the specificValue. Valid values for the operatorType variable are the operator constants, which are defined in the CompleteCondition class. For more information, see Table 76.

specificValue

Specifies the value to compare with the agent property value.

Type

public String specificValue

Notes

The specificValue holds the input condition's value, which Business Object Wizard compares with the agent property's value. The kind of comparison is determined by the operatorType variable. The specific value can be either of the following:

The specificValue variable is declared of type String so that it can hold any kind of value. However, to make comparisons properly, Business Object Wizard needs to know the actual data type of the specific value, which the typeOfSpecificValue member variable contains.

typeOfSpecificValue

Specifies the data type of the input condition's specific value.

Type

public int typeOfSpecificValue

Notes

The typeOfSpecificValue holds the data type for the input condition's specific value. The specificValue variable is declared of type String so that it can hold any kind of value. However, to make comparisons properly, Business Object Wizard needs to know the actual data type of the specific value. Valid values for the typeOfSpecificValue variable are the property-type constants, which are defined in the AgentProperty class. For more information, see Table 67.

For example, if the input condition's specific value is an integer constant of 5:

Copyright IBM Corp. 1997, 2003