All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.api.model.MacroRepeatTime Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy