public enum ReportDateFilter extends java.lang.Enum<ReportDateFilter>
| Enum Constant and Description |
|---|
DocumentDate |
PaymentDate |
ReportingDate |
TaxDate |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static ReportDateFilter |
valueOf(int intValue) |
static ReportDateFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportDateFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportDateFilter DocumentDate
public static final ReportDateFilter PaymentDate
public static final ReportDateFilter ReportingDate
public static final ReportDateFilter TaxDate
public static ReportDateFilter[] values()
for (ReportDateFilter c : ReportDateFilter.values()) System.out.println(c);
public static ReportDateFilter 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 ReportDateFilter valueOf(int intValue)
public int getValue()