The getEra() method of LocalDate class in Java gets the era applicable at this date.
Syntax:
public Era getEra()
Parameter: This method does not accepts any parameter.
Return Value: The function returns the IsoChronology era constant applicable at this date and not null.
Below programs illustrate the getEra() method of LocalDate in Java:
Program 1:
// Program to illustrate the getEra() method import java.util.*;import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDate dt = LocalDate.parse("2018-11-27"); // Prints the day number System.out.println(dt.getEra()); }} |
CE
Program 2:
// Program to illustrate the getEra() method import java.util.*;import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDate dt = LocalDate.parse("2018-01-21"); // Prints the day number System.out.println(dt.getEra()); }} |
CE
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getEra()

… [Trackback]
[…] Read More Info here to that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]
… [Trackback]
[…] Info to that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]
… [Trackback]
[…] Here you can find 42370 additional Information to that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]
… [Trackback]
[…] Information to that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]
… [Trackback]
[…] There you can find 79220 more Information on that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]
… [Trackback]
[…] Here you will find 24377 more Info on that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]
… [Trackback]
[…] There you can find 80930 additional Info to that Topic: geeksforgeeks.org/localdate-getera-method-in-java-with-examples/ […]