> For the complete documentation index, see [llms.txt](https://dbflow.gitbook.io/dbflow/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dbflow.gitbook.io/dbflow/develop/usage2/usage/typeconverters.md).

# TypeConverters

When building out `Model` classes, you may wish to provide a different type of `@Column` that from the standard supported column types. To recap the standard column types include:&#x20;

1\. `String`, `char`, `Character`&#x20;

2\. All numbers types (primitive + boxed)&#x20;

3\. `byte[]`/`Byte`&#x20;

4\. `Blob` (DBFlow's version)&#x20;

5\. `Date`/`java.sql.Date`&#x20;

6\. Booleans&#x20;

7\. `Model` as `@ForeignKey`  or `@ColumnMap`

8\. `Calendar`&#x20;

9\. `BigDecimal`&#x20;

10\. `UUID`

`TypeConverter` do *not* support:&#x20;

1\. Any Parameterized fields.&#x20;

2\. `List<T>`, `Map<T>`, etc. Best way to fix this is to create a separate table [relationship](/dbflow/develop/usage2/usage/relationships.md)&#x20;

3\. Conversion from one type-converter to another (i.e `JSONObject` to `Date`). The first parameter of `TypeConverter` is the value of the type as if it was a primitive/boxed type.&#x20;

4\. Conversion from custom type to `Model`, or `Model` to a supported type.&#x20;

5\. The custom class *must* map to a non-complex field such as `String`, numbers, `char`/`Character` or `Blob`

## Define a TypeConverter

Defining a `TypeConverter` is quick and easy.

This example creates a `TypeConverter` for a field that is `JSONObject` and converts it to a `String` representation:

```kotlin
@com.dbflow5.annotation.TypeConverter
class JSONConverter : TypeConverter<String, JSONObject>() {

    override fun getDBValue(model: JSONObject?): String? = model?.toString()

    override fun getModelValue(data: String?): JSONObject? = 
        try {
            JSONObject(data)
        } catch (JSONException e) {
          // you should consider logging or throwing exception.
          null
        }
    }
}
```

Once this is defined, by using the annotation `@TypeConverter`, it is registered automatically across all databases.

There are cases where you wish to provide multiple `TypeConverter` for same kind of field (i.e. `Date` with different date formats stored in a DB). You can override a field's `TypeConverter` locally at the `@Column` level.

## TypeConverter for specific `@Column`

In DBFlow, specifying a `TypeConverter` for a `@Column` is as easy as `@Column(typeConverter = JSONConverter::class)`. What it will do is create the converter once for use only when that column is used.
