Uses of Interface
org.eclipse.microprofile.openapi.models.media.Encoding
Packages that use Encoding
Package
Description
A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI
v3.1 documents from their Jakarta REST applications.
A set of interfaces for programmable models to represent input and output data types and media types.
-
Uses of Encoding in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return EncodingModifier and TypeMethodDescriptionstatic EncodingOASFactory.createEncoding()This method creates a newEncodinginstance. -
Uses of Encoding in org.eclipse.microprofile.openapi.models.media
Methods in org.eclipse.microprofile.openapi.models.media that return EncodingModifier and TypeMethodDescriptionAdds the given header to this Encoding' list of headers with the given string as its key.default EncodingEncoding.allowReserved(Boolean allowReserved) AllowReserved determines whether the parameter value SHOULD allow reserved characters to be encoded without percent-encoding.default EncodingEncoding.contentType(String contentType) The Content-Type for encoding a specific property.default EncodingWhen this is true, property values of type array or object generate separate parameters for each value of the array, or key-value-pair of the map.default EncodingHeaders property of an Encoding is a map that allows additional information to be provided as headersdefault EncodingEncoding.style(Encoding.Style style) Style describes how the encoding value will be serialized depending on the type of the parameter value.Methods in org.eclipse.microprofile.openapi.models.media that return types with arguments of type EncodingModifier and TypeMethodDescriptionMediaType.getEncoding()Returns the encoding property from a MediaType instance.Methods in org.eclipse.microprofile.openapi.models.media with parameters of type EncodingModifier and TypeMethodDescriptionMediaType.addEncoding(String key, Encoding encodingItem) Adds an Encoding item to the encoding property of a MediaType instance.Method parameters in org.eclipse.microprofile.openapi.models.media with type arguments of type EncodingModifier and TypeMethodDescriptiondefault MediaTypeSets encoding property of a MediaType instance to the given map object.voidMediaType.setEncoding(Map<String, Encoding> encoding) Sets encoding property of a MediaType instance to the given map object.