Class Ranges.Entry
java.lang.Object
org.apache.tomcat.util.http.parser.Ranges.Entry
- Enclosing class:
Ranges
Represents a single range entry with a start and end position.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Entry
public Entry(long start, long end) Creates a new range entry.- Parameters:
start- the start position of the rangeend- the end position of the range, or -1 if absent
-
-
Method Details
-
getStart
public long getStart()Returns the start position of the range.- Returns:
- the start position
-
getEnd
public long getEnd()Returns the end position of the range.- Returns:
- the end position, or -1 if absent
-