ByteBuffer.CompareTo(ByteBuffer) Method

Definition

Compares this buffer to another.

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

Parameters

that
ByteBuffer

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 other is not a byte buffer.

Remarks

Compares this buffer to another.

Two byte 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 byte elements are compared as if by invoking Byte#compare(byte,byte).

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

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

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