com.feilong.lib.xstream.converters.time.DurationConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
/*
* Copyright (C) 2017 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 13. February 2017 by Joerg Schaible
*/
package com.feilong.lib.xstream.converters.time;
import java.time.Duration;
import java.time.format.DateTimeParseException;
import com.feilong.lib.xstream.converters.ConversionException;
import com.feilong.lib.xstream.converters.basic.AbstractSingleValueConverter;
/**
* Converts a {@link Duration} instance to string.
*
* @author Jörg Schaible
* @since 1.4.10
*/
public class DurationConverter extends AbstractSingleValueConverter{
@Override
public boolean canConvert(@SuppressWarnings("rawtypes") final Class type){
return Duration.class == type;
}
@Override
public Duration fromString(final String str){
try{
return Duration.parse(str);
}catch (final DateTimeParseException ex){
final ConversionException exception = new ConversionException("Cannot parse value as duration", ex);
exception.add("value", str);
throw exception;
}
}
}