Uses of Interface
com.github.mizosoft.methanol.BodyAdapter
-
Packages that use BodyAdapter Package Description com.github.mizosoft.methanol com.github.mizosoft.methanol.adapter com.github.mizosoft.methanol.internal.adapter -
-
Uses of BodyAdapter in com.github.mizosoft.methanol
Subinterfaces of BodyAdapter in com.github.mizosoft.methanol Modifier and Type Interface Description static interfaceBodyAdapter.DecoderABodyAdapterthat decodes response bodies into objects.static interfaceBodyAdapter.EncoderABodyAdapterthat encodes objects into request bodies. -
Uses of BodyAdapter in com.github.mizosoft.methanol.adapter
Subinterfaces of BodyAdapter in com.github.mizosoft.methanol.adapter Modifier and Type Interface Description static interfaceAbstractBodyAdapter.BaseDecoderThis interface abstracts the more-capableAbstractBodyAdapter.BaseDecoder.toObject(TypeRef, Hints)method and adds a default implementation forAbstractBodyAdapter.BaseDecoder.toObject(TypeRef, MediaType)that forwards to the former.static interfaceAbstractBodyAdapter.BaseEncoderThis interface abstracts the more-capableAbstractBodyAdapter.BaseEncoder.toBody(Object, TypeRef, Hints)method and adds a default implementation forAbstractBodyAdapter.BaseEncoder.toBody(Object, MediaType)that forwards to the former.Classes in com.github.mizosoft.methanol.adapter that implement BodyAdapter Modifier and Type Class Description classAbstractBodyAdapterAn abstractBodyAdapterthat implementsisCompatibleWith(MediaType)by allowing subclasses to specify a set ofMediaTypesthe adapter is compatible with.classForwardingBodyAdapterABodyAdapterthat forwards calls to another.classForwardingDecoderABodyAdapter.Decoderthat forwards calls to another.classForwardingEncoderAnBodyAdapter.Encoderthat forwards calls to another.Methods in com.github.mizosoft.methanol.adapter that return BodyAdapter Modifier and Type Method Description protected abstract BodyAdapterForwardingBodyAdapter. delegate()Returns the adapter calls are being forwarded to.protected BodyAdapterForwardingDecoder. delegate() -
Uses of BodyAdapter in com.github.mizosoft.methanol.internal.adapter
Classes in com.github.mizosoft.methanol.internal.adapter that implement BodyAdapter Modifier and Type Class Description classBasicAdapterAn adapter for basic types (e.g.,String,byte[]).
-