public enum ReportStatus extends Enum<ReportStatus>
| Enum Constant and Description |
|---|
ResendError |
ResendSuccessfully |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ReportStatus |
getStatus(int code) |
static ReportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportStatus ResendSuccessfully
public static final ReportStatus ResendError
public static ReportStatus[] values()
for (ReportStatus c : ReportStatus.values()) System.out.println(c);
public static ReportStatus 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 nullpublic int getCode()
public static ReportStatus getStatus(int code)
Copyright © 2000–2025 EPAM Systems. All rights reserved.