public int compareTo(LFQuizQuestionCategory lfQuizQuestionCategory) { long primaryKey = lfQuizQuestionCategory.getPrimaryKey(); if (getPrimaryKey() < primaryKey) { return -1; } else if (getPrimaryKey() > primaryKey) { return 1; } else { return 0; } }
@Override public boolean equals(Object obj) { if (obj == null) { return false; } LFQuizQuestionCategory lfQuizQuestionCategory = null; try { lfQuizQuestionCategory = (LFQuizQuestionCategory) obj; } catch (ClassCastException cce) { return false; } long primaryKey = lfQuizQuestionCategory.getPrimaryKey(); if (getPrimaryKey() == primaryKey) { return true; } else { return false; } }