java.time.LocalTime.of() Method Example



Description

The java.time.LocalTime.of(int hour, int minute, int second, int nanoOfSecond) method obtains an instance of LocalTime from year, month, day, hour, minute, second and nanosecond.

Declaration

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

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

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

  • nanoOfSecond − the nano-of-second to represent, from 0 to 999,999,999

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, int nanoOfSecond) method.

package com.tutorialspoint;

import java.time.LocalTime;

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

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

06:30:40.000050
Advertisements