public static enum ReportItem.Type extends Enum<ReportItem.Type>
Enum Constant and Description |
---|
ABANDONED |
DISCONNECTED |
ERROR |
MISSING |
ORPHANED |
Modifier and Type | Method and Description |
---|---|
static ReportItem.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportItem.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportItem.Type ORPHANED
public static final ReportItem.Type DISCONNECTED
public static final ReportItem.Type ABANDONED
public static final ReportItem.Type MISSING
public static final ReportItem.Type ERROR
public static ReportItem.Type[] values()
for (ReportItem.Type c : ReportItem.Type.values()) System.out.println(c);
public static ReportItem.Type 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 © 2004–2024 The Apache Software Foundation. All rights reserved.