ProvidedDaoReturnTypeConverter


@Target(allowedTargets = [AnnotationTarget.CLASS])
@Retention(value = AnnotationRetention.BINARY)
public annotation ProvidedDaoReturnTypeConverter


Marks a class containing DaoReturnTypeConverter functions that will be provided to Room at runtime.

An instance of a class annotated with this annotation has to be provided to the Room database using androidx.room3.RoomDatabase.Builder.addDaoReturnTypeConverter. If Room uses the annotated DAO return type converter class, it will verify that it is provided in the builder and if not, it will throw an exception.

Summary

Public constructors

Public constructors

ProvidedDaoReturnTypeConverter

public ProvidedDaoReturnTypeConverter()