@Target(value=FIELD)
@Retention(value=RUNTIME)
public @interface UseConverter
TypeConverter to convert the value of a field to and from
its underlying value in the database.
The annotated field must also be annotated with @Column.
Column| Modifier and Type | Required Element and Description |
|---|---|
java.lang.Class<?> |
type
The SQLite data type of the column.
|
java.lang.Class<?> |
value
The
TypeConverter to use for type conversion. |
public abstract java.lang.Class<?> value
TypeConverter to use for type conversion.public abstract java.lang.Class<?> type