public enum ReportExecStatus extends Enum<ReportExecStatus>
| Modifier and Type | Method and Description |
|---|---|
static ReportExecStatus |
fromString(String value) |
static ReportExecStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportExecStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportExecStatus STARTED
public static final ReportExecStatus RUNNING
public static final ReportExecStatus SUCCESS
public static final ReportExecStatus FAILURE
public static ReportExecStatus[] values()
for (ReportExecStatus c : ReportExecStatus.values()) System.out.println(c);
public static ReportExecStatus 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 ReportExecStatus fromString(String value)
Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.