Package gov.nasa.pds.objectAccess.array
Interface DataTypeAdapter
- All Known Subinterfaces:
ComplexDataTypeAdapter
- All Known Implementing Classes:
ComplexDoubleAdapter,ComplexFloatAdapter,DoubleAdapter,FloatAdapter,IntegerAdapter
public interface DataTypeAdapter
Defines an interface for getting a data type in various formats.
-
Method Summary
Modifier and TypeMethodDescriptiondoublegetDouble(ByteBuffer buf) Gets the value as a double.intgetInt(ByteBuffer buf) Gets the value as an int.longgetLong(ByteBuffer buf) Gets the value as a long.
-
Method Details
-
getInt
Gets the value as an int.- Parameters:
buf- the buffer from which to get the value- Returns:
- the value, as an int
-
getLong
Gets the value as a long.- Parameters:
buf- the buffer from which to get the value- Returns:
- the value, as a long
-
getDouble
Gets the value as a double.- Parameters:
buf- the buffer from which to get the value- Returns:
- the value, as a double
-