dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleJson Structure / CompareTo Method / CompareTo(OracleJson) Method
The OracleJson to be compared.

In This Topic
    CompareTo(OracleJson) Method
    In This Topic
    Compares the current OracleJson object to the specified one and returns an integer that represents their relative values.
    Syntax
    'Declaration
     
    Public Overloads Function CompareTo( _
       ByVal other As OracleJson _
    ) As Integer
    public int CompareTo( 
       OracleJson other
    )

    Parameters

    other
    The OracleJson to be compared.

    Return Value

    A signed number indicating the relative values of the current OracleJson structure and the specified one.
    Return Value Condition
    Less than zero The value of the current OracleJson object is less than the specified one.
    Zero The current OracleJson object equals to the specified one.
    Greater than zero The current OracleJson object is greater than the specified one.
    See Also