Example usage for org.joda.time ReadableInstant toInstant

List of usage examples for org.joda.time ReadableInstant toInstant

Introduction

In this page you can find the example usage for org.joda.time ReadableInstant toInstant.

Prototype

Instant toInstant();

Source Link

Document

Get the value as a simple immutable Instant object.

Usage

From source file:com.threewks.thundr.transformer.date.ReadableInstantToDate.java

License:Apache License

@Override
public Date from(ReadableInstant from) {
    return from == null ? null : from.toInstant().toDate();
}