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