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

org.tiogasolutions.notify.pub.notification.NotificationStatus Maven / Gradle / Ivy

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

public enum NotificationStatus {

  received, assigned, completed, failed;

  private NotificationStatus() {
  }

  public boolean isReceived() {
    return this == received;
  }

  public boolean isAssigned() {
    return this == assigned;
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy