Is it possible to generate a .xcdatamodel (CoreData data model) from an existing SQLite database file?
I\'ve developed a SQLite database and written a Java API again
No. Core Data is not just a thin wrapper around SQLite. It's an object store that can (optionally) be persisted to a SQLite database. This means that Core Data models do not have a direct mapping to the SQLite database.
In your case I'd recommend using one of the SQLite wrappers that are available (I've not used any of them so I couldn't recommend any one in particular).