public enum ReportStyle extends Enum<ReportStyle>
| Enum Constant and Description |
|---|
CHART |
CHART_AND_LIST |
LIST |
| Modifier and Type | Method and Description |
|---|---|
static ReportStyle |
fromInt(int enumValue) |
int |
getEnumValue() |
static ReportStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportStyle LIST
public static final ReportStyle CHART
public static final ReportStyle CHART_AND_LIST
public static ReportStyle[] values()
for (ReportStyle c : ReportStyle.values()) System.out.println(c);
public static ReportStyle 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 nullpublic int getEnumValue()
public static ReportStyle fromInt(int enumValue)
? Copyright 2013 BMC Software, Inc.