CharBuffer.CompareTo(CharBuffer) Method

Definition

Compares this buffer to another.

[Android.Runtime.Register("compareTo", "(Ljava/nio/CharBuffer;)I", "GetCompareTo_Ljava_nio_CharBuffer_Handler")]
public virtual int CompareTo (Java.Nio.CharBuffer? that);
[<Android.Runtime.Register("compareTo", "(Ljava/nio/CharBuffer;)I", "GetCompareTo_Ljava_nio_CharBuffer_Handler")>]
abstract member CompareTo : Java.Nio.CharBuffer -> int
override this.CompareTo : Java.Nio.CharBuffer -> int

Parameters

that
CharBuffer

Returns

A negative integer, zero, or a positive integer as this buffer is less than, equal to, or greater than the given buffer

Attributes

Exceptions

if otherBuffer is not a char buffer.

Remarks

Compares this buffer to another.

Two char buffers are compared by comparing their sequences of remaining elements lexicographically, without regard to the starting position of each sequence within its corresponding buffer.

Pairs of char elements are compared as if by invoking Character#compare(char,char).

A char buffer is not comparable to any other type of object.

Java documentation for java.nio.CharBuffer.compareTo(java.nio.CharBuffer).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to