java.time.LocalTime.of() Method Example



Description

The java.time.LocalTime.of(int hour, int minute) method obtains an instance of LocalTime from hour and minute.

Declaration

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

public static LocalTime of(int hour, int minute)

Parameters

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

  • minute − the minute-of-hour 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) method.

package com.tutorialspoint;

import java.time.LocalTime;

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

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

06:30
Advertisements