Package tech.ydb.yoj.databind.converter
Annotation Interface StringColumn
@Inherited
@Retention(RUNTIME)
@Target({FIELD,RECORD_COMPONENT,ANNOTATION_TYPE})
public @interface StringColumn
Annotation for fields that should be stored as text in the database.
- The conversion to text will be performed using
Object.toString(). - The conversion from text to a Java value will be performed using one of
(
static fromString(String),static valueOf(String)or the 1-argStringconstructor).
- See Also: