安装包 io.realm

接口 RealmModel

  • 所有已知的实现类:
    DynamicRealmObject, RealmObject

    public interface RealmModel
    用于将类标记为 RealmObject 的接口,可用于代替扩展RealmObject

    所有可用于扩展 RealmObject 的类的辅助方法都可用作静态方法:

     
       Person p = realm.createObject(Person.class);
    
       // With the RealmModel interface
       RealmObject.isValid(p);
    
       // With the RealmObject base class
       p.isValid();
     
     

    注意:实现此接口的对象还需要使用RealmClass进行注释,以便注释处理器可以生成下划线代理类。

    另请参阅:
    RealmObject