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

nl.vpro.nep.domain.ItemizerStatus Maven / Gradle / Ivy

There is a newer version: 8.4.1
Show newest version
package nl.vpro.nep.domain;

import lombok.Getter;

import nl.vpro.i18n.Displayable;


/**
 * @author Michiel Meeuwissen
 * @since 5.24
 */
@Getter
public enum ItemizerStatus implements Displayable {
    COMPLETED(true, "Klaar"),
    RUNNING(false, "Bezig"),
    QUEUED(false, "Gequeued"),
    STARTED(false, "Gestart"),
    RETRY(false, "Opnieuw proberen"),
    UNKNOWN(true, "Onbekend"),
    ERROR(true, "Fout"),
    CANCELLED(true, "Afgebroken");

    private final boolean endStatus;

    private final String displayName;

    ItemizerStatus(boolean endStatus, String displayName) {
        this.endStatus = endStatus;
        this.displayName = displayName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy