@Deprecated public class ByteFunctionHelpers extends Object
| Modifier and Type | Method and Description |
|---|---|
static int |
compare(ArrowBuf left,
int lStart,
int lEnd,
ArrowBuf right,
int rStart,
int rEnd)
Deprecated.
|
static int |
compare(ArrowBuf left,
int lStart,
int lEnd,
byte[] right,
int rStart,
int rEnd)
Deprecated.
|
static int |
equal(ArrowBuf left,
int lStart,
int lEnd,
ArrowBuf right,
int rStart,
int rEnd)
Deprecated.
|
static int |
unsignedIntCompare(int a,
int b)
Deprecated.
|
static int |
unsignedLongCompare(long a,
long b)
Deprecated.
|
@Deprecated public static final int equal(ArrowBuf left, int lStart, int lEnd, ArrowBuf right, int rStart, int rEnd)
left - Left ArrowBuf for comparisonlStart - start offset in the bufferlEnd - end offset in the bufferright - Right ArrowBuf for comparisonrStart - start offset in the bufferrEnd - end offset in the buffer@Deprecated public static final int compare(ArrowBuf left, int lStart, int lEnd, ArrowBuf right, int rStart, int rEnd)
left - Left ArrowBuf to comparelStart - start offset in the bufferlEnd - end offset in the bufferright - Right ArrowBuf to comparerStart - start offset in the bufferrEnd - end offset in the buffer@Deprecated public static final int compare(ArrowBuf left, int lStart, int lEnd, byte[] right, int rStart, int rEnd)
left - Left ArrowBuf for comparison purposeslStart - start offset in the bufferlEnd - end offset in the bufferright - second input to be comparedrStart - start offset in the byte arrayrEnd - end offset in the byte array@Deprecated public static int unsignedLongCompare(long a, long b)
long values, treating them as unsigned values between
0 and 2^64 - 1 inclusive.a - the first unsigned long to compareb - the second unsigned long to comparea is less than b; a positive value if a is
greater than b; or zero if they are equal@Deprecated public static int unsignedIntCompare(int a, int b)
Copyright © 2021 The Apache Software Foundation. All rights reserved.