public enum Header extends Enum<Header>
| Enum Constant and Description |
|---|
AGGREGATE_DATA_LOAD |
AGGREGATE_PERFORMANCE |
DETAILED_BASE |
DETAILED_FUNCTIONAL |
DETAILED_PERFORMANCE |
EMPTY |
MONITOR |
THIN_AGGREGATE_DATA_LOAD |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Header |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Header[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Header EMPTY
public static final Header AGGREGATE_PERFORMANCE
public static final Header DETAILED_BASE
public static final Header DETAILED_PERFORMANCE
public static final Header DETAILED_FUNCTIONAL
public static final Header AGGREGATE_DATA_LOAD
public static final Header THIN_AGGREGATE_DATA_LOAD
public static final Header MONITOR
public static Header[] values()
for (Header c : Header.values()) System.out.println(c);
public static Header 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.