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.ConstantsAssembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Overridable Function GetOperator() As String |
C# |
---|
public virtual string GetOperator() |
C++ |
---|
public: virtual String GetOperator() |
J# |
---|
public virtual string GetOperator() |
JScript |
---|
public virtual
function GetOperator() : String |
Return Value
A String
representation of the join comparison operator.
See Also