Uses of Class
feign.CollectionFormat
-
Packages that use CollectionFormat Package Description feign feign.template -
-
Uses of CollectionFormat in feign
Methods in feign that return CollectionFormat Modifier and Type Method Description CollectionFormat
collectionFormat()
CollectionFormat
RequestTemplate. collectionFormat()
The Collection Format that will be used when resolvingIterable
andCollection
variables.static CollectionFormat
CollectionFormat. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CollectionFormat[]
CollectionFormat. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in feign with parameters of type CollectionFormat Modifier and Type Method Description RequestTemplate
RequestTemplate. collectionFormat(CollectionFormat collectionFormat)
The Collection Format to use when resolving variables that representIterable
s orCollection
s -
Uses of CollectionFormat in feign.template
Methods in feign.template with parameters of type CollectionFormat Modifier and Type Method Description static QueryTemplate
QueryTemplate. append(QueryTemplate queryTemplate, java.lang.Iterable<java.lang.String> values, CollectionFormat collectionFormat)
Append a value to the Query Template.static QueryTemplate
QueryTemplate. create(java.lang.String name, java.lang.Iterable<java.lang.String> values, java.nio.charset.Charset charset, CollectionFormat collectionFormat)
Create a new Query Template.
-