Uses of Interface
com.blazebit.persistence.view.spi.type.TypeConverter
Packages that use TypeConverter
Package
Description
Entity-View extension metamodel.
SPI for implementers of the Blaze-Persistence Entity-View extension.
-
Uses of TypeConverter in com.blazebit.persistence.view.metamodel
Methods in com.blazebit.persistence.view.metamodel that return TypeConverterModifier and TypeMethodDescriptionTypeConverter<X,?> Type.getConverter()The converter for converting objects between the converted type and the actual entity view model type. -
Uses of TypeConverter in com.blazebit.persistence.view.spi
Methods in com.blazebit.persistence.view.spi that return types with arguments of type TypeConverterModifier and TypeMethodDescriptionMap<Class<?>,Map<Class<?>, TypeConverter<?, ?>>> EntityViewConfiguration.getTypeConverters()Returns the currently registered type converters.<Y> Map<Class<?>,TypeConverter<?, Y>> EntityViewConfiguration.getTypeConverters(Class<Y> viewModelType) Returns the currently registered type converters for the given view model type.Methods in com.blazebit.persistence.view.spi with parameters of type TypeConverterModifier and TypeMethodDescription<X,Y> EntityViewConfiguration EntityViewConfiguration.registerTypeConverter(Class<X> underlyingType, Class<Y> viewModelType, TypeConverter<X, Y> converter) Registers the given converter for the given types.