Uses of Class
org.jdrupes.httpcodec.types.Directive
Package | Description |
---|---|
org.jdrupes.httpcodec.types |
Special types related to HTTP.
|
-
Uses of Directive in org.jdrupes.httpcodec.types
Fields in org.jdrupes.httpcodec.types with type parameters of type Directive Modifier and Type Field Description static MultiValueConverter<CacheControlDirectives,Directive>
Converters. CACHE_CONTROL_LIST
A converter for cache control directives.static MultiValueConverter<List<Directive>,Directive>
Converters. DIRECTIVE_LIST
A converter for a list of directives.static MultiValueConverter<List<Directive>,Directive>
Converters. DIRECTIVE_LIST
A converter for a list of directives.Methods in org.jdrupes.httpcodec.types that return Directive Modifier and Type Method Description Directive
Directive.DirectiveConverter. fromFieldValue(String text)
Methods in org.jdrupes.httpcodec.types that return types with arguments of type Directive Modifier and Type Method Description Iterator<Directive>
CacheControlDirectives. iterator()
Stream<Directive>
CacheControlDirectives. stream()
Methods in org.jdrupes.httpcodec.types with parameters of type Directive Modifier and Type Method Description CacheControlDirectives
CacheControlDirectives. add(Directive directive)
Adds a directive to the list.String
Directive.DirectiveConverter. asFieldValue(Directive value)
Constructor parameters in org.jdrupes.httpcodec.types with type arguments of type Directive Constructor Description CacheControlDirectives(Collection<Directive> existing)
Creates a new list with items copied from the existing collection.