HomeSort by relevance Sort by last modified time
    Searched refs:CopticEra (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
CopticEra.java 68 * <b>Do not use {@code ordinal()} to obtain the numeric representation of {@code CopticEra}.
74 public enum CopticEra implements Era {
89 * Obtains an instance of {@code CopticEra} from an {@code int} value.
91 * {@code CopticEra} is an enum representing the Coptic eras of BEFORE_AM/AM.
98 public static CopticEra of(int era) {
CopticChronology.java 213 if (era instanceof CopticEra == false) {
214 throw new ClassCastException("Era must be CopticEra");
216 return (era == CopticEra.AM ? yearOfEra : 1 - yearOfEra);
221 return CopticEra.of(eraValue);
226 return Arrays.<Era>asList(CopticEra.values());

Completed in 68 milliseconds