Example usage for org.joda.time MonthDay toString

List of usage examples for org.joda.time MonthDay toString

Introduction

In this page you can find the example usage for org.joda.time MonthDay toString.

Prototype

@ToString
public String toString() 

Source Link

Document

Output the month-day in ISO8601 format (--MM-dd).

Usage

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

License:Apache License

@Override
public String toNonNullValue(MonthDay value) {
    return value.toString();
}

From source file:org.springframework.format.datetime.joda.MonthDayFormatter.java

License:Apache License

@Override
public String print(MonthDay object, Locale locale) {
    return object.toString();
}