public static enum NotificationSettings.ReportSource extends Enum<NotificationSettings.ReportSource>
| Enum Constant and Description |
|---|
ALL
Both database and external files.
|
DATABASE
Database.
|
EXTERNAL_FILES
External files.
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationSettings.ReportSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationSettings.ReportSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationSettings.ReportSource DATABASE
public static final NotificationSettings.ReportSource EXTERNAL_FILES
public static final NotificationSettings.ReportSource ALL
public static NotificationSettings.ReportSource[] values()
for (NotificationSettings.ReportSource c : NotificationSettings.ReportSource.values()) System.out.println(c);
public static NotificationSettings.ReportSource 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 © 2021. All rights reserved.