List of usage examples for java.time LocalTime atOffset
public OffsetTime atOffset(ZoneOffset offset)
From source file:Main.java
public static void main(String[] args) { LocalTime l = LocalTime.now(); OffsetTime t = l.atOffset(ZoneOffset.UTC); System.out.println(t);//from ww w .j ava2s . c o m }