Uses of Class
org.restlet.data.Range

Packages that use Range
org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects. 
org.restlet.engine.application Supports Restlet applications. 
org.restlet.engine.header Supports HTTP header parsing and formatting. 
org.restlet.engine.io Supports input and output work. 
org.restlet.representation Common representation data elements. 
org.restlet.resource Client and server resource classes. 
org.restlet.util Various utility classes. 
 

Uses of Range in org.restlet.engine.adapter
 

Methods in org.restlet.engine.adapter that return types with arguments of type Range
 List<Range> HttpRequest.getRanges()
           
 

Uses of Range in org.restlet.engine.application
 

Methods in org.restlet.engine.application that return Range
 Range RangeRepresentation.getRange()
          Returns the range specific to this wrapper.
 

Methods in org.restlet.engine.application with parameters of type Range
 void RangeRepresentation.setRange(Range range)
          Sets the range specific to this wrapper.
 

Constructors in org.restlet.engine.application with parameters of type Range
RangeRepresentation(Representation wrappedRepresentation, Range range)
          Constructor.
 

Uses of Range in org.restlet.engine.header
 

Methods in org.restlet.engine.header that return types with arguments of type Range
 HeaderWriter<Range> RangeWriter.append(Range range)
           
static List<Range> RangeReader.read(String rangeHeader)
          Parse the Range header and returns the list of corresponding Range objects.
 

Methods in org.restlet.engine.header with parameters of type Range
 HeaderWriter<Range> RangeWriter.append(Range range)
           
static String RangeWriter.write(Range range, long size)
          Formats range as a Content-Range header value.
 

Method parameters in org.restlet.engine.header with type arguments of type Range
 RangeWriter RangeWriter.append(List<Range> ranges)
          Formats ranges as a Range header value
static String RangeWriter.write(List<Range> ranges)
          Formats ranges as a Range header value
 

Uses of Range in org.restlet.engine.io
 

Constructors in org.restlet.engine.io with parameters of type Range
RangeInputStream(InputStream in, long totalSize, Range range)
          Constructs a stream exposing only a range of a given source stream.
 

Uses of Range in org.restlet.representation
 

Methods in org.restlet.representation that return Range
 Range Representation.getRange()
          Returns the range where in the full content the partial content available should be applied.

Note that when used with HTTP connectors, this property maps to the "Content-Range" header.
 

Methods in org.restlet.representation with parameters of type Range
 void Representation.setRange(Range range)
          Sets the range where in the full content the partial content available should be applied.

Note that when used with HTTP connectors, this property maps to the "Content-Range" header.
 

Uses of Range in org.restlet.resource
 

Methods in org.restlet.resource that return types with arguments of type Range
 List<Range> Resource.getRanges()
          Returns the ranges to return from the target resource's representation.
 

Method parameters in org.restlet.resource with type arguments of type Range
 void ClientResource.setRanges(List<Range> ranges)
          Sets the ranges to return from the target resource's representation.
 

Uses of Range in org.restlet.util
 

Methods in org.restlet.util that return Range
 Range WrapperRepresentation.getRange()
           
 

Methods in org.restlet.util that return types with arguments of type Range
 List<Range> WrapperRequest.getRanges()
           
 

Methods in org.restlet.util with parameters of type Range
 void WrapperRepresentation.setRange(Range range)
           
 

Method parameters in org.restlet.util with type arguments of type Range
 void WrapperRequest.setRanges(List<Range> ranges)
           
 



Copyright © 2005-2014 Restlet.