The prolepticYear() method of java.time.chrono.HijrahChronology class is used to retrieve the proleptic year present in the hijrah system of particular hijrah era.
Syntax:
Java
Java
public int prolepticYear(Era era,
int yearOfEra)
Parameter: This method takes the following argument as a parameter.
- era: which is the object of hijrah Era.
- yearofEra: which is the year for the particular hijrah era
// Java program to demonstrate
// prolepticYear() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now();
// getting HijrahChronology used in HijrahDate
HijrahChronology crono = hidate.getChronology();
// getting prolepticYear for the
// given year of Era
// by using prolepticYear() method
int proyear
= crono.prolepticYear(HijrahEra.AH, 1444);
// display the result
System.out.println("proleptic Year is: "
+ proyear);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
Output:
Example 2:
proleptic Year is: 1444
// Java program to demonstrate
// prolepticYear() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
// creating and initializing
// HijrahDate Object
HijrahDate hidate = HijrahDate.now();
// getting HijrahChronology used in HijrahDate
HijrahChronology crono = hidate.getChronology();
// getting prolepticYear for the
// given year of Era
// by using prolepticYear() method
int proyear
= crono.prolepticYear(HijrahEra.AH, 1200);
// display the result
System.out.println("proleptic Year is: "
+ proyear);
}
catch (DateTimeException e) {
System.out.println("passed parameter can"
+ " not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
Output:
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#prolepticYear-java.time.chrono.Era-int-proleptic Year is: 1200