- 
Methods in org.ghotibeaun.json.util that return ByteRange
| Modifier and Type | 
Method | 
Description | 
ByteRange | 
ByteRange.andAdd(byte addByte) | 
 Apppend a byte to an existing ByteRange 
 | 
ByteRange | 
ByteRange.andAdd(byte[] byteArray) | 
 Append an array of bytes to an existing ByteRange 
 | 
ByteRange | 
ByteRange.andAddFrom(byte start,
byte end) | 
 Appends a ByteRange with a set of byte values starting with a start byte value to an end byte value inclusive 
 | 
static ByteRange | 
ByteRange.empty() | 
 Creates an empty ByteRange 
 | 
static ByteRange | 
ByteRange.startWith(byte addByte) | 
 Creates a new ByteRange with a single byte in the range value 
 | 
static ByteRange | 
ByteRange.startWith(byte[] byteArray) | 
 Initializes a ByteRange with an array of byte values. 
 | 
static ByteRange | 
ByteRange.startWith(byte start,
byte end) | 
 Initializes a ByteRange by creating a range array containing all byte values from a
 starting byte value to an ending byte value inclusive. 
 |