Created
November 27, 2017 01:35
-
-
Save larkintuckerllc/5df3e100d02da0847c03827647248dd6 to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 3
This file contains 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
... | |
@Entity | |
public class Todo { | |
@PrimaryKey(autoGenerate = true) | |
public int id; | |
public String name; | |
public long date; | |
public boolean equals(Todo todo) { | |
return todo.id == id && | |
todo.name == name && | |
todo.date == date; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment