Class DoubleAdapter

    • Constructor Summary

      Constructors 
      Constructor Description
      DoubleAdapter​(boolean isBigEndian)
      Creates a new instance.
    • Method Summary

      All Methods Instance Methods Concrete 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.
      protected double getValue​(java.nio.ByteBuffer buf)  
      • Methods inherited from class java.lang.Object

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

      • DoubleAdapter

        public DoubleAdapter​(boolean isBigEndian)
        Creates a new instance.
        Parameters:
        isBigEndian - true, if element is big-endian
    • Method Detail

      • getInt

        public int getInt​(java.nio.ByteBuffer buf)
        Description copied from interface: DataTypeAdapter
        Gets the value as an int.
        Specified by:
        getInt in interface DataTypeAdapter
        Parameters:
        buf - the buffer from which to get the value
        Returns:
        the value, as an int
      • getLong

        public long getLong​(java.nio.ByteBuffer buf)
        Description copied from interface: DataTypeAdapter
        Gets the value as a long.
        Specified by:
        getLong in interface DataTypeAdapter
        Parameters:
        buf - the buffer from which to get the value
        Returns:
        the value, as a long
      • getDouble

        public double getDouble​(java.nio.ByteBuffer buf)
        Description copied from interface: DataTypeAdapter
        Gets the value as a double.
        Specified by:
        getDouble in interface DataTypeAdapter
        Parameters:
        buf - the buffer from which to get the value
        Returns:
        the value, as a double
      • getValue

        protected double getValue​(java.nio.ByteBuffer buf)