Example usage for org.joda.time LocalTime millisOfDay

List of usage examples for org.joda.time LocalTime millisOfDay

Introduction

In this page you can find the example usage for org.joda.time LocalTime millisOfDay.

Prototype

public Property millisOfDay() 

Source Link

Document

Get the millis of day property which provides access to advanced functionality.

Usage

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

License:Apache License

@Override
public Integer toNonNullValue(LocalTime value) {
    return value.millisOfDay().get();
}