Class StringValueConverter<J>

java.lang.Object
tech.ydb.yoj.databind.converter.StringValueConverter<J>
Type Parameters:
J - Java type
All Implemented Interfaces:
ValueConverter<J,String>

public final class StringValueConverter<J> extends Object implements ValueConverter<J,String>
Possible String value type replacement: a generic converter that can be applied to your type/your columns with
 @Column(
     customValueType=@CustomValueType(
         columnValueType=STRING,
         columnClass=<your type>,
         converter=StringValueConverter.class
     )
 )