Interface ByteData
-
- All Known Subinterfaces:
OffsettingByteData
- All Known Implementing Classes:
AbstractBackedByteData
,BaseByteData
,OffsetBackedByteData
,OffsettingBackedByteData
public interface ByteData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
getBytesAt(int count, long offset)
double
getDoubleAt(long o)
float
getFloatAt(long o)
long
getLongAt(long o)
ByteData
getOffsetData(long offset)
OffsettingByteData
getOffsettingOffsetData(long offset)
byte
getS1At(long offset)
short
getS2At(long offset)
int
getS4At(long offset)
short
getU1At(long offset)
int
getU2At(long offset)
-
-
-
Method Detail
-
getS1At
byte getS1At(long offset)
-
getU1At
short getU1At(long offset)
-
getS2At
short getS2At(long offset)
-
getU2At
int getU2At(long offset)
-
getS4At
int getS4At(long offset)
-
getDoubleAt
double getDoubleAt(long o)
-
getFloatAt
float getFloatAt(long o)
-
getLongAt
long getLongAt(long o)
-
getBytesAt
byte[] getBytesAt(int count, long offset)
-
getOffsetData
ByteData getOffsetData(long offset)
-
getOffsettingOffsetData
OffsettingByteData getOffsettingOffsetData(long offset)
-
-