public enum ReportNatureValues extends java.lang.Enum<ReportNatureValues>
List of natures of Reports.
Modifier and Type | Method and Description |
---|---|
static ReportNatureValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportNatureValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportNatureValues _E
Report
public static final ReportNatureValues _I
Indicates a Report that is a form, to be subsequently filled in.
public static final ReportNatureValues _K
Screen
public static final ReportNatureValues _L
Table
public static ReportNatureValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ReportNatureValues[] values()
for (ReportNatureValues c : ReportNatureValues.values()) System.out.println(c);