List of usage examples for java.time OffsetTime withHour
public OffsetTime withHour(int hour)
From source file:Main.java
public static void main(String[] args) { OffsetTime m = OffsetTime.now(); OffsetTime n = m.withHour(4); System.out.println(n);//from w w w . j av a 2 s . c o m }