org.bidib.wizard.api.model.MacroRepeatTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
The newest version!
package org.bidib.wizard.api.model;
public enum MacroRepeatTime {
// @formatter:off
NONE("none"), MINUTELY("minutely"), QUARTER_HOURLY("quarter_hourly"), HALF_HOURLY("half_hourly"),
HOURLY("hourly"), WORKING_HOURLY("working_hourly");
// @formatter:on
private final String label;
MacroRepeatTime(String label) {
this.label = label;
}
@Override
public String toString() {
return label;
}
}