Home | History | Annotate | Download | only in calendar

Lines Matching defs:era

67     private Era era;
97 public Era getEra() {
98 return era;
102 * Sets the era of the date to the specified era. The default
103 * implementation of this method accepts any Era value, including
107 * <code>CalendarDate</code> requires eras and the specified era
110 * <code>era</code> is unknown to the calendar
113 public CalendarDate setEra(Era era) {
114 if (this.era == era) {
117 this.era = era;
418 int era = 0;
419 Era e = getEra();
421 era = e.hashCode();
424 return (int) hash * (int)(hash >> 32) ^ era ^ normalized ^ zone;