org.joda.time.base.BasePeriod Java Examples

The following examples show how to use org.joda.time.base.BasePeriod. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BasePeriodRelay.java    From jfixture with MIT License 6 votes vote down vote up
@Override
public Object create(Object request, SpecimenContext context) {

    if (!(request instanceof SpecimenType)) {
        return new NoSpecimen();
    }

    SpecimenType<?> type = (SpecimenType) request;
    if (!BasePeriod.class.isAssignableFrom(type.getRawType())) {
        return new NoSpecimen();
    }

    Duration duration = (Duration) context.resolve(Duration.class);
    Period period = duration.toPeriod();

    try {
        return type.getRawType().getDeclaredConstructor(Object.class).newInstance(period);
    } catch (Exception e) {
        e.printStackTrace();
        return new NoSpecimen();
    }
}