public enum Extension extends Enum<Extension>
| Enum Constant and Description |
|---|
AGGREGATE_CSV |
CSV |
DETAILED_CSV |
VISUALIZATION |
XML |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Extension |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Extension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Extension CSV
public static final Extension XML
public static final Extension VISUALIZATION
public static final Extension AGGREGATE_CSV
public static final Extension DETAILED_CSV
public static Extension[] values()
for (Extension c : Extension.values()) System.out.println(c);
public static Extension 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 © 2017 Apache Software Foundation. All Rights Reserved.