Package noaa.coastwatch.util.chunk
Interface IntegerValuedDataChunk
- All Superinterfaces:
DataChunk
- All Known Implementing Classes:
ByteChunk
,IntChunk
,LongChunk
,ShortChunk
The
IntegerValuedDataChunk
interface is implemented by concrete
classes that hold data of a specific primitive integer type (byte, short,
int, long).- Since:
- 3.4.0
- Author:
- Peter Hollemans
-
Nested Class Summary
Nested classes/interfaces inherited from interface noaa.coastwatch.util.chunk.DataChunk
DataChunk.DataType
-
Method Summary
Modifier and TypeMethodDescriptionGets the packing scheme.boolean
Gets the unsigned flag.Methods inherited from interface noaa.coastwatch.util.chunk.DataChunk
accept, blankCopy, blankCopyWithValues, getExternalType, getPrimitiveData, getValues, isCompatible, valueBytes
-
Method Details
-
isUnsigned
boolean isUnsigned()Gets the unsigned flag.- Returns:
- true if the primitive data values are unsigned.
-
getPackingScheme
PackingScheme getPackingScheme()Gets the packing scheme. A packing scheme is used to reduce the size of floating point data to store in an integer value.- Returns:
- the packing scheme or null if the chunk data is not packed.
-