Interface ComplexDataTypeAdapter

All Superinterfaces:
DataTypeAdapter
All Known Implementing Classes:
ComplexDoubleAdapter, ComplexFloatAdapter

public interface ComplexDataTypeAdapter extends DataTypeAdapter
  • Method Details

    • getImagInt

      int getImagInt(ByteBuffer buf)
      Gets the imaginary value as an int.
      Parameters:
      buf - the buffer from which to get the value
      Returns:
      the imaginary value, as an int
    • getImagLong

      long getImagLong(ByteBuffer buf)
      Gets the imaginary value as a long.
      Parameters:
      buf - the buffer from which to get the value
      Returns:
      the imaginary value, as a long
    • getImagDouble

      double getImagDouble(ByteBuffer buf)
      Gets the imaginary value as a double.
      Parameters:
      buf - the buffer from which to get the value
      Returns:
      the imaginary value, as a double
    • getRealInt

      int getRealInt(ByteBuffer buf)
      Gets the real value as an int.
      Parameters:
      buf - the buffer from which to get the value
      Returns:
      the real value, as an int
    • getRealLong

      long getRealLong(ByteBuffer buf)
      Gets the real value as a long.
      Parameters:
      buf - the buffer from which to get the value
      Returns:
      the real value, as a long
    • getRealDouble

      double getRealDouble(ByteBuffer buf)
      Gets the real value as a double.
      Parameters:
      buf - the buffer from which to get the value
      Returns:
      the real value, as a double