Package io.micronaut.data.model.runtime
Interface AttributeConverterRegistry
-
public interface AttributeConverterRegistry
Attribute converter registry.- Since:
- 3.1
- Author:
- Denis Stepanov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeConverter<java.lang.Object,java.lang.Object>
getConverter(java.lang.Class<?> converterClass)
Returns the converter instance.
-
-
-
Method Detail
-
getConverter
@NonNull AttributeConverter<java.lang.Object,java.lang.Object> getConverter(@NonNull java.lang.Class<?> converterClass)
Returns the converter instance. NOTE: The converter class might not implementAttributeConverter
when supporting external converters.- Parameters:
converterClass
- The converter class.- Returns:
- new instance of type converter.
-
-