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

org.tiogasolutions.notify.pub.task.TaskStatus Maven / Gradle / Ivy

There is a newer version: 5.1.4
Show newest version
package org.tiogasolutions.notify.pub.task;

public enum TaskStatus {

  PENDING,
  SENDING,
  COMPLETED,
  FAILED;

  private TaskStatus() {
  }

  public boolean isPending() {
    return this == PENDING;
  }

  public boolean isSending() {
    return this == SENDING;
  }

  public boolean isCompleted() {
    return this == COMPLETED;
  }

  public boolean isFailed() {
    return this == FAILED;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy