Gets the standard string representation of the comparison operator used by this instance.

The operators returned will be one of the following (shown with their corresponding field):

  • "equal to" character, (EQUAL_AS_INT)
  • "less than" and "greater than" characters, (NOT_EQUAL_AS_INT)
  • "less than" character, (LESS_THAN_AS_INT)
  • "greater than" character, (GREATER_THAN_AS_INT)
  • "less than" and "equal to" characters, (LESS_THAN_EQUAL_TO_AS_INT)
  • "greater than" and "equal to" characters, (GREATER_THAN_EQUAL_TO_AS_INT)

Namespace:  FileNet.Api.Constants
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Function GetOperator As String
C#
public virtual string GetOperator()
Visual C++
public:
virtual String^ GetOperator()
JavaScript
function getOperator();

Return Value

A String representation of the join comparison operator.

ToggleSee Also