public enum SendEventStatus extends Enum<SendEventStatus>
| Enum Constant and Description |
|---|
ERROR |
ON_PROCESS |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static SendEventStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SendEventStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendEventStatus SUCCESS
public static final SendEventStatus ERROR
public static final SendEventStatus ON_PROCESS
public static SendEventStatus[] values()
for (SendEventStatus c : SendEventStatus.values()) System.out.println(c);
public static SendEventStatus 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 © 2017. All rights reserved.