The prolepticYear() method of java.time.chrono.ThaiBuddhistChronology class is used to retrieve the proleptic year present in the ThaiBuddhist system of particular ThaiBuddhist era.
Syntax:
public int prolepticYear(
      Era era, int yearOfEra)
Parameter: This method takes the following argument as a parameter.
- era: which is the object of ThaiBuddhist Era.
- yearofEra: which is the year for the particular ThaiBuddhist era
Return Value: This method returns the proleptic year present in the ThaiBuddhist system of particular ThaiBuddhist era.
Below are the examples to illustrate the prolepticYear() method:
Example 1:
| // Java program to demonstrate// prolepticYear() method Âimportjava.util.*;importjava.io.*;importjava.time.*;importjava.time.chrono.*; ÂpublicclassGFG {    publicstaticvoidmain(String[] argv)    {        try{            // creating and initializing            // ThaiBuddhistDate Object            ThaiBuddhistDate hidate                = ThaiBuddhistDate.now(); Â            // getting ThaiBuddhistChronology            // used in ThaiBuddhistDate            ThaiBuddhistChronology crono                = hidate.getChronology(); Â            // getting prolepticYear for the            // given year of Era            // by using prolepticYear() method            intproyear                = crono.prolepticYear(                    ThaiBuddhistEra.BE,                    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);        }    }} | 
proleptic Year is: 1444
Example 2:
| // Java program to demonstrate// prolepticYear() method Âimportjava.util.*;importjava.io.*;importjava.time.*;importjava.time.chrono.*; ÂpublicclassGFG {    publicstaticvoidmain(String[] argv)    {        try{            // creating and initializing            // ThaiBuddhistDate Object            ThaiBuddhistDate hidate                = ThaiBuddhistDate.now(); Â            // getting ThaiBuddhistChronology            // used in ThaiBuddhistDate            ThaiBuddhistChronology crono                = hidate.getChronology(); Â            // getting prolepticYear for the            // given year of Era            // by using prolepticYear() method            intproyear                = crono.prolepticYear(                    ThaiBuddhistEra.BEFORE_BE,                    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);        }    }} | 
proleptic Year is: -1443

 
                                    







