Skip to main content

FlowCompare Methods

An object defining methods for the FlowCompare class.

Initialize()

Initializes the FlowCompare instance.

Returns:

Type: void
Method does not return anything

This is a sync method. Method runs synchronously.


CompareOrganizationCode(code)

Compares an organization code with the results list and returns the matching result.

Parameters:

code (required): string
The organization code to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareOrganizationId(id)

Compares an organization ID with the results list and returns the matching result.

Parameters:

id (required): long
The organization ID to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareDateValue(variableValue)

Compares a date value with the results list using various comparison types and returns the matching result.

Parameters:

variableValue (required): object
The date value to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareFlowInitiatorUser()

Compares the flow initiator's user with the results list and returns the matching result.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareNumericValue(variableValue)

Compares a numeric value with the results list using various comparison types and returns the matching result.

Parameters:

variableValue (required): object
The numeric value to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareFlowInitiatorPosition()

Compares the flow initiator's positions with the results list and returns the matching result.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareVariableValue<TValue,(variableValue)

Compares a generic variable value with the results list and returns the matching result.

Parameters:

variableValue (required): object
The generic variable value to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareBooleanValue(variableValue)

Compares a boolean value with the results list using various comparison types and returns the matching result.

Parameters:

variableValue (required): object
The boolean value to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.


CompareStringValue(variableValue)

Compares a string value with the results list using various comparison types and returns the matching result.

Parameters:

variableValue (required): object
The string value to compare.

Returns:

Type: JObject
The matching result from the comparison process.

This is a sync method. Method runs synchronously.