Class NormalizedKeyUtil
- java.lang.Object
-
- org.apache.flink.api.common.typeutils.base.NormalizedKeyUtil
-
@Internal public class NormalizedKeyUtil extends Object
Utilities related toTypeComparator.
-
-
Constructor Summary
Constructors Constructor Description NormalizedKeyUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidputBooleanNormalizedKey(boolean value, MemorySegment target, int offset, int numBytes)static voidputByteNormalizedKey(byte value, MemorySegment target, int offset, int numBytes)static voidputCharNormalizedKey(char value, MemorySegment target, int offset, int numBytes)static voidputIntNormalizedKey(int iValue, MemorySegment target, int offset, int numBytes)static voidputLongNormalizedKey(long lValue, MemorySegment target, int offset, int numBytes)static voidputShortNormalizedKey(short value, MemorySegment target, int offset, int numBytes)static voidputUnsignedIntegerNormalizedKey(int value, MemorySegment target, int offset, int numBytes)static voidputUnsignedLongNormalizedKey(long value, MemorySegment target, int offset, int numBytes)
-
-
-
Method Detail
-
putByteNormalizedKey
public static void putByteNormalizedKey(byte value, MemorySegment target, int offset, int numBytes)
-
putCharNormalizedKey
public static void putCharNormalizedKey(char value, MemorySegment target, int offset, int numBytes)
-
putBooleanNormalizedKey
public static void putBooleanNormalizedKey(boolean value, MemorySegment target, int offset, int numBytes)
-
putShortNormalizedKey
public static void putShortNormalizedKey(short value, MemorySegment target, int offset, int numBytes)
-
putIntNormalizedKey
public static void putIntNormalizedKey(int iValue, MemorySegment target, int offset, int numBytes)
-
putUnsignedIntegerNormalizedKey
public static void putUnsignedIntegerNormalizedKey(int value, MemorySegment target, int offset, int numBytes)
-
putLongNormalizedKey
public static void putLongNormalizedKey(long lValue, MemorySegment target, int offset, int numBytes)
-
putUnsignedLongNormalizedKey
public static void putUnsignedLongNormalizedKey(long value, MemorySegment target, int offset, int numBytes)
-
-