public enum ReportStatus extends Enum<ReportStatus>
Modifier and Type | Method and Description |
---|---|
static ReportStatus |
parseFromStatusCode(StatusCode statusCode) |
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 OK
public static final ReportStatus WARNING
public static final ReportStatus KO
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 static ReportStatus parseFromStatusCode(StatusCode statusCode)
Copyright © 2019 Vitam. All rights reserved.