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