Class DataRange
- java.lang.Object
-
- org.hansken.plugin.extraction.api.transformations.DataRange
-
public class DataRange extends Object
A DataRange describes a range of bytes with an offset and length.- Author:
- Netherlands Forensic Institute
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getLength()
long
getOffset()
void
setLength(long length)
void
setOffset(long offset)
-
-
-
Constructor Detail
-
DataRange
public DataRange(long offset, long length)
Creates aDataRange
which describes a range of bytes.- Parameters:
offset
- the starting point of the datalength
- the size of the data
-
-