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