net.redhogs.cronparser.builder.MinutesDescriptionBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quartz-glass Show documentation
Show all versions of quartz-glass Show documentation
A web user interface for quartz
package net.redhogs.cronparser.builder;
import net.redhogs.cronparser.DateAndTimeUtils;
import java.text.MessageFormat;
/**
* @author grhodes
* @since 10 Dec 2012 14:11:11
*/
public class MinutesDescriptionBuilder extends AbstractDescriptionBuilder {
@Override
protected String getSingleItemDescription(String expression) {
return DateAndTimeUtils.formatMinutes(expression);
}
@Override
protected String getIntervalDescriptionFormat(String expression) {
return MessageFormat.format("every {0} " + plural(expression, "minute", "minutes"), expression);
}
@Override
protected String getBetweenDescriptionFormat(String expression) {
return "minutes {0} through {1} past the hour";
}
@Override
protected String getDescriptionFormat(String expression) {
return expression == "0" ? "" : "at {0} " + plural(expression, "minute", "minutes") + " past the hour";
}
}