Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:35
Show Gist options
  • Save larkintuckerllc/5df3e100d02da0847c03827647248dd6 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/5df3e100d02da0847c03827647248dd6 to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 3
...
@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