Realm models must extend the RealmObject base class, they define the schema of the underlying database.
Supported field types are boolean, byte, short, int, long, float, double, String, Date, byte[], links to other RealmObjects, and RealmList<T extends RealmModel>.
public class Person extend...