java.lang.Object
org.apache.polaris.persistence.varint.VarInt

public final class VarInt extends Object
Utility class to de-serialize positive integer values in a space efficient way.
  • Method Details

    • varIntLen

      public static int varIntLen(long v)
    • putVarInt

      public static ByteBuffer putVarInt(ByteBuffer b, long v)
    • readVarInt

      public static int readVarInt(ByteBuffer b)
    • readVarLong

      public static long readVarLong(ByteBuffer b)
    • skipVarInt

      public static void skipVarInt(ByteBuffer b)