Package com.uc4.api.objects
Enum NotificationSettings.ReportSource
- java.lang.Object
-
- java.lang.Enum<NotificationSettings.ReportSource>
-
- com.uc4.api.objects.NotificationSettings.ReportSource
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NotificationSettings.ReportSource>
- Enclosing class:
- NotificationSettings
public static enum NotificationSettings.ReportSource extends java.lang.Enum<NotificationSettings.ReportSource>
Report source.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
Both database and external files.DATABASE
Database.EXTERNAL_FILES
External files.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
DATABASE
public static final NotificationSettings.ReportSource DATABASE
Database.
-
EXTERNAL_FILES
public static final NotificationSettings.ReportSource EXTERNAL_FILES
External files.
-
ALL
public static final NotificationSettings.ReportSource ALL
Both database and external files.
-
-
Method Detail
-
values
public static NotificationSettings.ReportSource[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NotificationSettings.ReportSource c : NotificationSettings.ReportSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationSettings.ReportSource valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-