public static enum Report.OutputType extends Enum<Report.OutputType>
| Enum Constant and Description | 
|---|
| DIRECTORYThe report outputs files into a directory. | 
| FILEThe report outputs a single file. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Report.OutputType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Report.OutputType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Report.OutputType FILE
 That is, the Report.getDestination() file points a single file.
public static final Report.OutputType DIRECTORY
 That is, the Report.getDestination() file points to a directory.
public static Report.OutputType[] values()
for (Report.OutputType c : Report.OutputType.values()) System.out.println(c);
public static Report.OutputType 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 null