Uses of Class
org.springframework.http.HttpRange
Packages that use HttpRange
Package
Description
Contains a basic abstraction over client/server-side HTTP.
-
Uses of HttpRange in org.springframework.http
Methods in org.springframework.http that return HttpRangeModifier and TypeMethodDescriptionstatic HttpRange
HttpRange.createByteRange
(long firstBytePos) Create anHttpRange
from the given position to the end.static HttpRange
HttpRange.createByteRange
(long firstBytePos, long lastBytePos) Create aHttpRange
from the given fist to last position.static HttpRange
HttpRange.createSuffixRange
(long suffixLength) Create anHttpRange
that ranges over the last given number of bytes.Methods in org.springframework.http that return types with arguments of type HttpRangeModifier and TypeMethodDescriptionHttpHeaders.getRange()
Return the value of theRange
header.HttpRange.parseRanges
(String ranges) Parse the given, comma-separated string into a list ofHttpRange
objects.Method parameters in org.springframework.http with type arguments of type HttpRangeModifier and TypeMethodDescriptionvoid
Sets the (new) value of theRange
header.static List<org.springframework.core.io.support.ResourceRegion>
HttpRange.toResourceRegions
(List<HttpRange> ranges, org.springframework.core.io.Resource resource) Convert eachHttpRange
into aResourceRegion
, selecting the appropriate segment of the givenResource
using HTTP Range information.static String
HttpRange.toString
(Collection<HttpRange> ranges) Return a string representation of the given list ofHttpRange
objects.