OffsetTime toLocalTime() example

Description

OffsetTime toLocalTime() gets the LocalTime part of this date-time.

Syntax

toLocalTime has the following syntax.


public LocalTime toLocalTime()

Example

The following example shows how to use toLocalTime.


import java.time.LocalTime;
import java.time.OffsetTime;
//from  w w  w .ja  v  a 2s  .  com
public class Main {
  public static void main(String[] args) {
    OffsetTime m = OffsetTime.now();
    LocalTime l = m.toLocalTime();
    System.out.println(l);

  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset