Example usage for java.time OffsetTime toLocalTime

List of usage examples for java.time OffsetTime toLocalTime

Introduction

In this page you can find the example usage for java.time OffsetTime toLocalTime.

Prototype

public LocalTime toLocalTime() 

Source Link

Document

Gets the LocalTime part of this date-time.

Usage

From source file:Main.java

public static void main(String[] args) {
    OffsetTime m = OffsetTime.now();
    LocalTime l = m.toLocalTime();
    System.out.println(l);/*from  w  ww . ja  v a 2s.co  m*/

}