public static enum ReportItem.ReportItemStatus extends Enum<ReportItem.ReportItemStatus>
| Enum Constant and Description |
|---|
INDETERMINATE
Report item status that leads to indeterminate validation result.
|
INFO
Report item status for info messages.
|
INVALID
Report item status that leads to invalid validation result.
|
| Modifier and Type | Method and Description |
|---|---|
static ReportItem.ReportItemStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportItem.ReportItemStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportItem.ReportItemStatus INFO
public static final ReportItem.ReportItemStatus INVALID
public static final ReportItem.ReportItemStatus INDETERMINATE
public static ReportItem.ReportItemStatus[] values()
for (ReportItem.ReportItemStatus c : ReportItem.ReportItemStatus.values()) System.out.println(c);
public static ReportItem.ReportItemStatus 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 © 1998–2024 Apryse Group NV. All rights reserved.