List of usage examples for org.joda.time Duration toPeriod
public Period toPeriod()
From source file:uk.ac.susx.tag.method51.core.params.codec.concrete.DurationCodec.java
License:Apache License
@Override public String encodeString(Duration value) throws EncodeException { try {//from www.j av a2s . c o m return ISOPeriodFormat.standard().print(value.toPeriod().normalizedStandard()); } catch (IllegalArgumentException e) { throw new EncodeException(e); } }