Uses of Class
org.springframework.http.HttpRange
Package
Description
Contains a basic abstraction over client/server-side HTTP.
Mock implementations of reactive HTTP server contracts.
Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server
package.Provides the types that make up Spring's functional web framework for Servlet environments.
-
Uses of HttpRange in org.springframework.http
Modifier 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.Modifier and TypeMethodDescriptionHttpHeaders.getRange()
Return the value of theRange
header.HttpRange.parseRanges
(String ranges) Parse the given, comma-separated string into a list ofHttpRange
objects.Modifier and TypeMethodDescriptionvoid
Sets the (new) value of theRange
header.static List<ResourceRegion>
HttpRange.toResourceRegions
(List<HttpRange> ranges, 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. -
Uses of HttpRange in org.springframework.mock.http.server.reactive
-
Uses of HttpRange in org.springframework.web.reactive.function.server
-
Uses of HttpRange in org.springframework.web.reactive.function.server.support
-
Uses of HttpRange in org.springframework.web.servlet.function