Class ByteRange


  • public class ByteRange
    extends Object
    MSRP Byte-Range header value.

    Instances are immutable.

    • Field Detail

      • EMPTY

        public static final ByteRange EMPTY
        Used for empty messages: 1-0/0.
      • ALL

        public static final ByteRange ALL
        Used for indeterminate "all" byte range: 1-*/*.
    • Constructor Detail

      • ByteRange

        public ByteRange​(long total)
        Constructs an instance indicating the entire content with the specified length. Equivalent to ByteRange(1, total, total).
        Parameters:
        total - total number of bytes, or -1 if unspecified
        Throws:
        IllegalArgumentException - if total 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 unspecified
        total - total number of bytes, or -1 if unspecified
        Throws:
        IllegalArgumentException - if start is less than 1
        IllegalArgumentException - if end or total is less than -1
        IllegalArgumentException - if end is not -1 and start - 1 is greater than end
        IllegalArgumentException - if total is not -1 and end is greater than total
    • 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
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object