Home | History | Annotate | Download | only in alarms

Lines Matching defs:hour

38     /** Integer as a 24-hour format */
39 public int hour;
43 public Alarm(int id, int month, int date, int hour, int minute) {
47 this.hour = hour;
65 jsonObject.put("hour", hour);
87 alarm.hour = jsonObject.getInt("hour");
102 ", hour=" + hour +
119 hour == alarm.hour &&
125 return Objects.hash(id, month, date, hour, minute);
133 calendar.set(Calendar.HOUR_OF_DAY, hour);
139 otherCal.set(Calendar.HOUR_OF_DAY, other.hour);