Java Date Time Java Java API
java.time.OffsetTime
public OffsetTime withHour(int hour)
Returns a copy of this OffsetTime with the hour-of-day changed with the provided hour.
If the provided 'hour' is not valid, this method will throw java.time.DateTimeException. The valid values are 0 - 23.
package com.logicbig.example.offsettime;import java.time.OffsetTime;public class WithHourExample { public static void main(String... args) { OffsetTime t = OffsetTime.now(); System.out.println(t); OffsetTime t2 = t.withHour(22); System.out.println(t2); }}
16:12:53.054-05:0022:12:53.054-05:00