public enum UsageReportCategory extends Enum<UsageReportCategory>
| Enum Constant and Description |
|---|
ACTIVE |
ARCHIVED |
COMPLETED |
DECLINED |
DRAFT |
EXPIRED |
OPTED_OUT |
SENT |
TRASHED |
| Modifier and Type | Method and Description |
|---|---|
static UsageReportCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsageReportCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsageReportCategory ACTIVE
public static final UsageReportCategory DRAFT
public static final UsageReportCategory SENT
public static final UsageReportCategory COMPLETED
public static final UsageReportCategory ARCHIVED
public static final UsageReportCategory DECLINED
public static final UsageReportCategory OPTED_OUT
public static final UsageReportCategory EXPIRED
public static final UsageReportCategory TRASHED
public static UsageReportCategory[] values()
for (UsageReportCategory c : UsageReportCategory.values()) System.out.println(c);
public static UsageReportCategory 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 2022 OneSpan All rights reserved.