Package gov.nasa.pds.objectAccess.array
Interface ComplexDataTypeAdapter
- 
- All Superinterfaces:
- DataTypeAdapter
 - All Known Implementing Classes:
- ComplexDoubleAdapter,- ComplexFloatAdapter
 
 public interface ComplexDataTypeAdapter extends DataTypeAdapter 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetImagDouble(java.nio.ByteBuffer buf)Gets the imaginary value as a double.intgetImagInt(java.nio.ByteBuffer buf)Gets the imaginary value as an int.longgetImagLong(java.nio.ByteBuffer buf)Gets the imaginary value as a long.doublegetRealDouble(java.nio.ByteBuffer buf)Gets the real value as a double.intgetRealInt(java.nio.ByteBuffer buf)Gets the real value as an int.longgetRealLong(java.nio.ByteBuffer buf)Gets the real value as a long.- 
Methods inherited from interface gov.nasa.pds.objectAccess.array.DataTypeAdaptergetDouble, getInt, getLong
 
- 
 
- 
- 
- 
Method Detail- 
getImagIntint getImagInt(java.nio.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
 
 - 
getImagLonglong getImagLong(java.nio.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
 
 - 
getImagDoubledouble getImagDouble(java.nio.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
 
 - 
getRealIntint getRealInt(java.nio.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
 
 - 
getRealLonglong getRealLong(java.nio.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
 
 - 
getRealDoubledouble getRealDouble(java.nio.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
 
 
- 
 
-