public enum EStatusMessage extends Enum<EStatusMessage>
| Enum Constant and Description |
|---|
ERROR
The
message was not send, error occurs. |
PUSHED
The
message was pushed into queue for sending. |
SEND
The
message was send, no further information about if message was arrived to destination or no. |
| Modifier and Type | Method and Description |
|---|---|
static EStatusMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EStatusMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EStatusMessage PUSHED
message was pushed into queue for sending.public static final EStatusMessage SEND
message was send, no further information about if message was arrived to destination or no.public static final EStatusMessage ERROR
message was not send, error occurs.public static EStatusMessage[] values()
for (EStatusMessage c : EStatusMessage.values()) System.out.println(c);
public static EStatusMessage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Albirar. All rights reserved.