java.time.LocalTime.of() Method Example



Description

The java.time.LocalTime.of(int year, int month, int dayOfMonth, int hour, int minute, int second) method obtains an instance of LocalTime from hour, minute and second, setting the nanosecond to zero.

Declaration

Following is the declaration for java.time.LocalTime.of(int hour, int minute, int second) method.

public static LocalTime of(int hour, int minute, int second)

Parameters

  • hour − the hour-of-day to represent, from 0 to 23

  • minute − the minute-of-hour to represent, from 0 to 59

  • second − the second-of-minute to represent, from 0 to 59

Return Value

the local time, not null.

Exceptions

DateTimeException − if the value of any field is out of range.

Example

The following example shows the usage of java.time.LocalTime.of(int hour, int minute, int second) method.

package com.tutorialspoint;

import java.time.LocalTime;

public class LocalTimeDemo {
   public static void main(String[] args) {
 
      LocalTime date = LocalTime.of(6,30,40);
      System.out.println(date);  
   }
}

Let us compile and run the above program, this will produce the following result −

06:30:40
Advertisements