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