Uses of Class
org.apache.juneau.StringRanges
Packages that use StringRanges
Package
Description
HTTP Header Beans
-
Uses of StringRanges in org.apache.juneau
Fields in org.apache.juneau declared as StringRangesModifier and TypeFieldDescriptionstatic final StringRanges
StringRanges.EMPTY
Represents an empty string ranges object.Methods in org.apache.juneau that return StringRangesModifier and TypeMethodDescriptionStringRanges.forEachRange
(Consumer<StringRange> action) Performs an action on the string ranges that make up this object.static StringRanges
Returns a parsed string range header value.static StringRanges
StringRanges.of
(StringRange... value) Returns a parsed string range header value. -
Uses of StringRanges in org.apache.juneau.http
Methods in org.apache.juneau.http with parameters of type StringRangesModifier and TypeMethodDescriptionstatic final AcceptCharset
HttpHeaders.acceptCharset
(StringRanges value) Creates a newAcceptCharset
header.static final AcceptEncoding
HttpHeaders.acceptEncoding
(StringRanges value) Creates a newAcceptEncoding
header.static final AcceptLanguage
HttpHeaders.acceptLanguage
(StringRanges value) Creates a newAcceptLanguage
header.static final ContentDisposition
HttpHeaders.contentDisposition
(StringRanges value) Creates a newContentDisposition
header.static final BasicStringRangesHeader
HttpHeaders.stringRangesHeader
(String name, StringRanges value) Creates a newBasicStringRangesHeader
header.static final TE
HttpHeaders.te
(StringRanges value) Creates a newTE
header.Method parameters in org.apache.juneau.http with type arguments of type StringRangesModifier and TypeMethodDescriptionstatic final AcceptCharset
HttpHeaders.acceptCharset
(Supplier<StringRanges> value) Creates a newAcceptCharset
header with a delayed value.static final AcceptEncoding
HttpHeaders.acceptEncoding
(Supplier<StringRanges> value) Creates a newAcceptEncoding
header with a delayed value.static final AcceptLanguage
HttpHeaders.acceptLanguage
(Supplier<StringRanges> value) Creates a newAcceptLanguage
header with a delayed value.static final ContentDisposition
HttpHeaders.contentDisposition
(Supplier<StringRanges> value) Creates a newContentDisposition
header with a delayed value.static final BasicStringRangesHeader
HttpHeaders.stringRangesHeader
(String name, Supplier<StringRanges> value) Creates a newBasicStringRangesHeader
header with a delayed value.static final TE
HttpHeaders.te
(Supplier<StringRanges> value) Creates a newTE
header with a delayed value. -
Uses of StringRanges in org.apache.juneau.http.header
Methods in org.apache.juneau.http.header that return StringRangesModifier and TypeMethodDescriptionBasicStringRangesHeader.orElse
(StringRanges other) Return the value if present, otherwise returnother .BasicStringRangesHeader.toStringRanges()
Returns the header value as aStringRanges
.Methods in org.apache.juneau.http.header that return types with arguments of type StringRangesModifier and TypeMethodDescriptionBasicStringRangesHeader.asStringRanges()
Returns the header value as aStringRanges
wrapped in anOptional
.Methods in org.apache.juneau.http.header with parameters of type StringRangesModifier and TypeMethodDescriptionstatic AcceptCharset
AcceptCharset.of
(StringRanges value) Static creator.static AcceptEncoding
AcceptEncoding.of
(StringRanges value) Static creator.static AcceptLanguage
AcceptLanguage.of
(StringRanges value) Static creator.static BasicStringRangesHeader
BasicStringRangesHeader.of
(String name, StringRanges value) Static creator.static ContentDisposition
ContentDisposition.of
(StringRanges value) Static creator.static TE
TE.of
(StringRanges value) Static creator.BasicStringRangesHeader.orElse
(StringRanges other) Return the value if present, otherwise returnother .Method parameters in org.apache.juneau.http.header with type arguments of type StringRangesModifier and TypeMethodDescriptionstatic AcceptCharset
AcceptCharset.of
(Supplier<StringRanges> value) Static creator with delayed value.static AcceptEncoding
AcceptEncoding.of
(Supplier<StringRanges> value) Static creator with delayed value.static AcceptLanguage
AcceptLanguage.of
(Supplier<StringRanges> value) Static creator with delayed value.static BasicStringRangesHeader
BasicStringRangesHeader.of
(String name, Supplier<StringRanges> value) Static creator with delayed value.static ContentDisposition
ContentDisposition.of
(Supplier<StringRanges> value) Static creator with delayed value.static TE
TE.of
(Supplier<StringRanges> value) Static creator with delayed value.Constructors in org.apache.juneau.http.header with parameters of type StringRangesModifierConstructorDescriptionAcceptCharset
(StringRanges value) Constructor.AcceptEncoding
(StringRanges value) Constructor.AcceptLanguage
(StringRanges value) Constructor.BasicStringRangesHeader
(String name, StringRanges value) Constructor.ContentDisposition
(StringRanges value) Constructor.TE
(StringRanges value) Constructor.Constructor parameters in org.apache.juneau.http.header with type arguments of type StringRangesModifierConstructorDescriptionAcceptCharset
(Supplier<StringRanges> value) Constructor with delayed value.AcceptEncoding
(Supplier<StringRanges> value) Constructor with delayed value.AcceptLanguage
(Supplier<StringRanges> value) Constructor with delayed value.BasicStringRangesHeader
(String name, Supplier<StringRanges> value) Constructor with delayed value.ContentDisposition
(Supplier<StringRanges> value) Constructor with delayed value.TE
(Supplier<StringRanges> value) Constructor with delayed value.