Class Intrinsics

java.lang.Object
org.infinispan.server.hotrod.Intrinsics

public class Intrinsics extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static byte[]
    array(io.netty.buffer.ByteBuf buf, int lengthMaximum)
     
    static boolean
    bool(io.netty.buffer.ByteBuf buffer)
     
    static byte
    byte_(io.netty.buffer.ByteBuf buffer)
     
    static byte[]
    fixedArray(io.netty.buffer.ByteBuf buf, int length, int lengthMaximum)
     
    static int
    int_(io.netty.buffer.ByteBuf buffer)
     
    static long
    long_(io.netty.buffer.ByteBuf buf)
     
    static byte[]
    optionalArray(io.netty.buffer.ByteBuf buf, int lengthMaximum)
     
    static String
    optionalString(io.netty.buffer.ByteBuf buf, int lengthMaximum)
     
    static io.netty.buffer.ByteBuf
    readable(io.netty.buffer.ByteBuf buf, int length)
     
    static io.netty.buffer.ByteBuf
    retained(io.netty.buffer.ByteBuf buf, int length)
     
    static int
    signedVInt(io.netty.buffer.ByteBuf buf)
     
    static String
    string(io.netty.buffer.ByteBuf buf, int lengthMaximum)
     
    static int
    vInt(io.netty.buffer.ByteBuf buf)
     
    static long
    vLong(io.netty.buffer.ByteBuf buf)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Intrinsics

      public Intrinsics()
  • Method Details

    • vInt

      public static int vInt(io.netty.buffer.ByteBuf buf)
    • signedVInt

      public static int signedVInt(io.netty.buffer.ByteBuf buf)
    • vLong

      public static long vLong(io.netty.buffer.ByteBuf buf)
    • long_

      public static long long_(io.netty.buffer.ByteBuf buf)
    • byte_

      public static byte byte_(io.netty.buffer.ByteBuf buffer)
    • int_

      public static int int_(io.netty.buffer.ByteBuf buffer)
    • bool

      public static boolean bool(io.netty.buffer.ByteBuf buffer)
    • array

      public static byte[] array(io.netty.buffer.ByteBuf buf, int lengthMaximum)
    • fixedArray

      public static byte[] fixedArray(io.netty.buffer.ByteBuf buf, int length, int lengthMaximum)
    • string

      public static String string(io.netty.buffer.ByteBuf buf, int lengthMaximum)
    • optionalArray

      public static byte[] optionalArray(io.netty.buffer.ByteBuf buf, int lengthMaximum)
    • optionalString

      public static String optionalString(io.netty.buffer.ByteBuf buf, int lengthMaximum)
    • readable

      public static io.netty.buffer.ByteBuf readable(io.netty.buffer.ByteBuf buf, int length)
    • retained

      public static io.netty.buffer.ByteBuf retained(io.netty.buffer.ByteBuf buf, int length)