Package org.dellroad.msrp.msg
Class ByteRange
- java.lang.Object
-
- org.dellroad.msrp.msg.ByteRange
-
public class ByteRange extends Object
MSRPByte-Range
header value.Instances are immutable.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
static ByteRange
fromString(String string)
Create an instance by parsing aString
.long
getEnd()
Get the end byte position.long
getStart()
Get the start byte position.long
getTotal()
Get the total number of bytes.int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
ByteRange
public ByteRange(long total)
Constructs an instance indicating the entire content with the specified length. Equivalent toByteRange(1, total, total)
.- Parameters:
total
- total number of bytes, or -1 if unspecified- Throws:
IllegalArgumentException
- iftotal
is less than -1
-
ByteRange
public ByteRange(long start, long end, long total)
Constructor.- Parameters:
start
- start byte position (1-based)end
- end byte position (1-based), or -1 if unspecifiedtotal
- total number of bytes, or -1 if unspecified- Throws:
IllegalArgumentException
- ifstart
is less than 1IllegalArgumentException
- ifend
ortotal
is less than -1IllegalArgumentException
- ifend
is not -1 andstart - 1
is greater thanend
IllegalArgumentException
- iftotal
is not -1 andend
is greater thantotal
-
-
Method Detail
-
getStart
public long getStart()
Get the start byte position.- Returns:
- start byte position, at least one
-
getEnd
public long getEnd()
Get the end byte position.- Returns:
- end byte position, or -1 if not specified
-
getTotal
public long getTotal()
Get the total number of bytes.- Returns:
- total number of bytes, or -1 if not specified
-
fromString
public static ByteRange fromString(String string)
Create an instance by parsing aString
.- Parameters:
string
- byte range expressed as a string- Returns:
- corresponding
ByteRange
- Throws:
IllegalArgumentException
- ifstring
is null or invalid
-
-