Uses of Class
org.apache.juneau.StringRanges
Packages that use StringRanges
Package
Description
HTTP Header Beans
- 
Uses of StringRanges in org.apache.juneauFields in org.apache.juneau declared as StringRangesModifier and TypeFieldDescriptionstatic final StringRangesStringRanges.EMPTYRepresents 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 StringRangesReturns a parsed string range header value.static StringRangesStringRanges.of(StringRange... value) Returns a parsed string range header value.
- 
Uses of StringRanges in org.apache.juneau.httpMethods in org.apache.juneau.http with parameters of type StringRangesModifier and TypeMethodDescriptionstatic final AcceptCharsetHttpHeaders.acceptCharset(StringRanges value) Creates a newAcceptCharsetheader.static final AcceptEncodingHttpHeaders.acceptEncoding(StringRanges value) Creates a newAcceptEncodingheader.static final AcceptLanguageHttpHeaders.acceptLanguage(StringRanges value) Creates a newAcceptLanguageheader.static final ContentDispositionHttpHeaders.contentDisposition(StringRanges value) Creates a newContentDispositionheader.static final BasicStringRangesHeaderHttpHeaders.stringRangesHeader(String name, StringRanges value) Creates a newBasicStringRangesHeaderheader.static final TEHttpHeaders.te(StringRanges value) Creates a newTEheader.Method parameters in org.apache.juneau.http with type arguments of type StringRangesModifier and TypeMethodDescriptionstatic final AcceptCharsetHttpHeaders.acceptCharset(Supplier<StringRanges> value) Creates a newAcceptCharsetheader with a delayed value.static final AcceptEncodingHttpHeaders.acceptEncoding(Supplier<StringRanges> value) Creates a newAcceptEncodingheader with a delayed value.static final AcceptLanguageHttpHeaders.acceptLanguage(Supplier<StringRanges> value) Creates a newAcceptLanguageheader with a delayed value.static final ContentDispositionHttpHeaders.contentDisposition(Supplier<StringRanges> value) Creates a newContentDispositionheader with a delayed value.static final BasicStringRangesHeaderHttpHeaders.stringRangesHeader(String name, Supplier<StringRanges> value) Creates a newBasicStringRangesHeaderheader with a delayed value.static final TEHttpHeaders.te(Supplier<StringRanges> value) Creates a newTEheader with a delayed value.
- 
Uses of StringRanges in org.apache.juneau.http.headerMethods 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 aStringRangeswrapped in anOptional.Methods in org.apache.juneau.http.header with parameters of type StringRangesModifier and TypeMethodDescriptionstatic AcceptCharsetAcceptCharset.of(StringRanges value) Static creator.static AcceptEncodingAcceptEncoding.of(StringRanges value) Static creator.static AcceptLanguageAcceptLanguage.of(StringRanges value) Static creator.static BasicStringRangesHeaderBasicStringRangesHeader.of(String name, StringRanges value) Static creator.static ContentDispositionContentDisposition.of(StringRanges value) Static creator.static TETE.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 AcceptCharsetAcceptCharset.of(Supplier<StringRanges> value) Static creator with delayed value.static AcceptEncodingAcceptEncoding.of(Supplier<StringRanges> value) Static creator with delayed value.static AcceptLanguageAcceptLanguage.of(Supplier<StringRanges> value) Static creator with delayed value.static BasicStringRangesHeaderBasicStringRangesHeader.of(String name, Supplier<StringRanges> value) Static creator with delayed value.static ContentDispositionContentDisposition.of(Supplier<StringRanges> value) Static creator with delayed value.static TETE.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.