패키지 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