Interface DataTypeAdapter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getDouble​(java.nio.ByteBuffer buf)
      Gets the value as a double.
      int getInt​(java.nio.ByteBuffer buf)
      Gets the value as an int.
      long getLong​(java.nio.ByteBuffer buf)
      Gets the value as a long.
    • Method Detail

      • getInt

        int getInt​(java.nio.ByteBuffer buf)
        Gets the value as an int.
        Parameters:
        buf - the buffer from which to get the value
        Returns:
        the value, as an int
      • getLong

        long getLong​(java.nio.ByteBuffer buf)
        Gets the value as a long.
        Parameters:
        buf - the buffer from which to get the value
        Returns:
        the value, as a long
      • getDouble

        double getDouble​(java.nio.ByteBuffer buf)
        Gets the value as a double.
        Parameters:
        buf - the buffer from which to get the value
        Returns:
        the value, as a double