Last active
May 23, 2020 08:43
-
-
Save deepanshu42/07d0559381014234492b06950b06d323 to your computer and use it in GitHub Desktop.
Room generated code for UserDao
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final class UserDao_Impl implements UserDao { | |
private final RoomDatabase __db; | |
private final EntityInsertionAdapter<User> __insertionAdapterOfUser; | |
private final EntityDeletionOrUpdateAdapter<User> __deletionAdapterOfUser; | |
public UserDao_Impl(RoomDatabase __db) { | |
this.__db = __db; | |
this.__insertionAdapterOfUser = new EntityInsertionAdapter<User>(__db) { | |
//Implementation | |
}; | |
this.__deletionAdapterOfUser = new EntityDeletionOrUpdateAdapter<User>(__db) { | |
//Implementation | |
}; | |
} | |
@Override | |
public void insertAll(final User... users) { | |
//Implementation | |
} | |
@Override | |
public void delete(final User user) { | |
//Implementation | |
} | |
@Override | |
public List<User> getAll() { | |
//Implementation | |
} | |
@Override | |
public List<User> loadAllByIds(final int[] userIds) { | |
//Implementation | |
} | |
@Override | |
public User findByName(final String first, final String last) { | |
//Implementation | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment