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