The getHour() method of an LocalDateTime class is used to return the hour-of-day field. This method returns an integer value ranging from 0 to 23, i.e. the Hours of a day.
Syntax:
public int getHour()
Parameter: This method does not accept any parameter.
Returns: This method returns an integer value which represents the hour-of-day and it ranges from 0 to 23.
Below programs illustrate the LocalDateTime.getHour() method:
Program 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalDateTime local
= LocalDateTime.parse( "2018-12-03T12:39:10" );
int hourOfDay = local.getHour();
System.out.println( "HourOfDay: "
+ hourOfDay);
}
}
|
Program 2:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalDateTime local
= LocalDateTime.parse( "2019-01-28T22:29:10" );
int hourOfDay = local.getHour();
System.out.println( "HourOfDay: "
+ hourOfDay);
}
}
|
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/LocalDateTime.html#getHour–