@Target([AnnotationTarget.FILE]) annotation class UseSerializers
Adds serializerClasses to serializers resolving process inside the plugin. Each of serializerClasses must implement KSerializer.
Inside the file with this annotation, for each given property
of type T
in some serializable class, this list would be inspected for the presence of KSerializer<T>
.
If such serializer is present, it would be used instead of default.
Main use-case for this annotation is not to write @Serializable(with=SomeSerializer::class) on each property with custom serializer.
Serializers from this list have higher priority than default, but lesser priority than serializers defined on the property itself, such as Serializable (with=...) or ContextualSerialization.
(common, js, jvm, native)
<init> |
Adds serializerClasses to serializers resolving process inside the plugin. Each of serializerClasses must implement KSerializer. <init>(vararg serializerClasses: KClass<out KSerializer<*>>) |
(common, js, jvm, native)
serializerClasses |
vararg val serializerClasses: Array<out KClass<out KSerializer<*>>> |