Example usage for org.joda.time TimeOfDay fromMillisOfDay

List of usage examples for org.joda.time TimeOfDay fromMillisOfDay

Introduction

In this page you can find the example usage for org.joda.time TimeOfDay fromMillisOfDay.

Prototype

public static TimeOfDay fromMillisOfDay(long millisOfDay) 

Source Link

Document

Constructs a TimeOfDay from the specified millis of day using the ISO chronology.

Usage

From source file:org.jadira.usertype.dateandtime.joda.columnmapper.IntegerColumnTimeOfDayMapper.java

License:Apache License

@Override
public TimeOfDay fromNonNullValue(Integer value) {
    return TimeOfDay.fromMillisOfDay(value);
}