Package com.restfb.types.send
Enum NotificationTypeEnum
- java.lang.Object
-
- java.lang.Enum<NotificationTypeEnum>
-
- com.restfb.types.send.NotificationTypeEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<NotificationTypeEnum>
public enum NotificationTypeEnum extends Enum<NotificationTypeEnum>
Represents the push notification type as part of the Send API request
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_PUSH
REGULAR
SILENT_PUSH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NotificationTypeEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static NotificationTypeEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGULAR
public static final NotificationTypeEnum REGULAR
-
SILENT_PUSH
public static final NotificationTypeEnum SILENT_PUSH
-
NO_PUSH
public static final NotificationTypeEnum NO_PUSH
-
-
Method Detail
-
values
public static NotificationTypeEnum[] 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 (NotificationTypeEnum c : NotificationTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationTypeEnum valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-