public enum NotificationSendingState extends java.lang.Enum<NotificationSendingState>
This enum defines the various states that a notification can be in during the sending process. Each state provides information about whether the notification was sent successfully, if it should be retried, and a human-readable description of the state.
Enum Constant and Description |
---|
FAILED_ULTIMATELY
The state of a notification that has failed to send to all (mandatory) receivers' addresses and should not be retried (handling is finished).
|
IN_SENDING_PROCESS
The state of a notification that is currently being sent.
|
ONLY_PARTIALLY_SENT
The state of a notification for which sending was successful for a subset of the receivers' (mandatory)
addresses, but ultimately failed for other (mandatory) addresses and handling is finished.
|
SUCCESSFULLY_SENT
The state of a notification that has been successfully sent to all (mandatory) receivers' addresses and handling is finished.
|
TO_BE_RETRIED_NOW
The state of a notification for which sending should be attempted as soon as the notification system can do that.
|
TO_BE_SENT_INITIALLY
The initial state of a notification before any sending attempts have been made.
|
WAITING_FOR_RETRY
The state of a notification that has failed to send to at least one receivers' address and should be retried later.
|
Modifier and Type | Method and Description |
---|---|
static NotificationSendingState |
fromCode(int code)
Returns the state corresponding to the given code.
|
static java.util.Collection<NotificationSendingState> |
getAllStates() |
int |
getCode()
Returns the code associated with this state.
|
java.lang.String |
getDescription()
Returns a human-readable description of this state.
|
boolean |
isFailedUltimately() |
boolean |
isInSendingProcess() |
boolean |
isOnlyPartiallySent() |
boolean |
isSuccessfullySent() |
boolean |
isToBeRetriedNow() |
boolean |
isToBeSentInitially() |
boolean |
isWaitingForRetry() |
boolean |
meansHandlingFinishedFinally() |
boolean |
meansHandlingFinishedForCurrentRun() |
boolean |
stillNeedsToBeSentOut() |
java.lang.String |
toString()
Returns a string representation of this state.
|
static NotificationSendingState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationSendingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationSendingState TO_BE_SENT_INITIALLY
public static final NotificationSendingState IN_SENDING_PROCESS
public static final NotificationSendingState WAITING_FOR_RETRY
public static final NotificationSendingState SUCCESSFULLY_SENT
public static final NotificationSendingState FAILED_ULTIMATELY
public static final NotificationSendingState TO_BE_RETRIED_NOW
public static final NotificationSendingState ONLY_PARTIALLY_SENT
public static NotificationSendingState[] values()
for (NotificationSendingState c : NotificationSendingState.values()) System.out.println(c);
public static NotificationSendingState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static NotificationSendingState fromCode(int code)
code
- The code of the state.java.lang.IllegalArgumentException
- if no state matches the code.public static java.util.Collection<NotificationSendingState> getAllStates()
public int getCode()
public java.lang.String getDescription()
public java.lang.String toString()
toString
in class java.lang.Enum<NotificationSendingState>
public boolean meansHandlingFinishedForCurrentRun()
public boolean meansHandlingFinishedFinally()
public boolean stillNeedsToBeSentOut()
public boolean isToBeSentInitially()
public boolean isInSendingProcess()
public boolean isWaitingForRetry()
public boolean isSuccessfullySent()
public boolean isFailedUltimately()
public boolean isToBeRetriedNow()
public boolean isOnlyPartiallySent()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.