public static enum NotificationSettings.ReportSource extends java.lang.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(java.lang.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(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 null