Package gov.nasa.pds.objectAccess.array
Class FloatAdapter
- java.lang.Object
-
- gov.nasa.pds.objectAccess.array.FloatAdapter
-
- All Implemented Interfaces:
DataTypeAdapter
- Direct Known Subclasses:
ComplexFloatAdapter
public class FloatAdapter extends java.lang.Object implements DataTypeAdapter
Implements a data type adapter for float values.
-
-
Constructor Summary
Constructors Constructor Description FloatAdapter(boolean isBigEndian)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetDouble(java.nio.ByteBuffer buf)Gets the value as a double.intgetInt(java.nio.ByteBuffer buf)Gets the value as an int.longgetLong(java.nio.ByteBuffer buf)Gets the value as a long.protected doublegetValue(java.nio.ByteBuffer buf)
-
-
-
Method Detail
-
getInt
public int getInt(java.nio.ByteBuffer buf)
Description copied from interface:DataTypeAdapterGets the value as an int.- Specified by:
getIntin interfaceDataTypeAdapter- 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:DataTypeAdapterGets the value as a long.- Specified by:
getLongin interfaceDataTypeAdapter- 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:DataTypeAdapterGets the value as a double.- Specified by:
getDoublein interfaceDataTypeAdapter- Parameters:
buf- the buffer from which to get the value- Returns:
- the value, as a double
-
getValue
protected double getValue(java.nio.ByteBuffer buf)
-
-