ahmetb / orman

lightweight and minimalist ORM for Java/Android. works with SQLite & MySQL. (not actively maintained)
Other
249 stars 47 forks source link

Support Enum Fields #17

Closed ahmetb closed 13 years ago

ahmetb commented 13 years ago

Enum fields can be used as persistent fields on the database. We can store them as their (integer) order values or if they have a special constructor values, we should still user their order because constructor can be multi-variable.

Implement reverse mapping support as well.