public enum ReportFontSize extends Enum<ReportFontSize>
| Enum Constant and Description |
|---|
EXTRA_LARGE |
EXTRA_SMALL |
HUGE |
LARGE |
NORMAL |
SMALL |
TINY |
| Modifier and Type | Method and Description |
|---|---|
static ReportFontSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportFontSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportFontSize TINY
public static final ReportFontSize EXTRA_SMALL
public static final ReportFontSize SMALL
public static final ReportFontSize NORMAL
public static final ReportFontSize LARGE
public static final ReportFontSize EXTRA_LARGE
public static final ReportFontSize HUGE
public static ReportFontSize[] values()
for (ReportFontSize c : ReportFontSize.values()) System.out.println(c);
public static ReportFontSize 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 © 2016. All rights reserved.