ConverterSelectionStrategy

public interface ConverterSelectionStrategy<WireType>

Implementations of this interface perform mappings of one of the followings forms: - wire-schema -< @ref Converter - data-type -< @ref Converter. Implementations must implement equals(Object) and hashCode() appropriately.

Author

jmoringe, swrede

Parameters

<WireType> – the kind of wires contained converters can deal with

Methods

getConverter

Converter<WireType> getConverter(String key)

Tries to look up the converter designated by @a key.

Parameters

key – the key

Throws

NoSuchConverterException – no converter found for that key

Returns

the converter for the given key