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