public enum PreferenceType extends Enum<PreferenceType>
We use these when checking if different options are enabled.
See also EmailType.
| Modifier and Type | Method and Description |
|---|---|
static PreferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreferenceType EMAIL_NOTIFICATION_REQUEST
public static final PreferenceType EMAIL_NOTIFICATION_CONFIRM
public static final PreferenceType EMAIL_NOTIFICATION_MESSAGE_NEW
public static final PreferenceType EMAIL_NOTIFICATION_MESSAGE_REPLY
public static final PreferenceType EMAIL_NOTIFICATION_WALL_EVENT_NEW
public static final PreferenceType EMAIL_NOTIFICATION_WALL_POST_MY_NEW
public static final PreferenceType EMAIL_NOTIFICATION_WALL_POST_CONNECTION_NEW
public static final PreferenceType EMAIL_NOTIFICATION_WALL_STATUS_NEW
public static final PreferenceType EMAIL_NOTIFICATION_WORKSITE_NEW
public static final PreferenceType EMAIL_NOTIFICATION_PROFILE_CHANGE
public static final PreferenceType OFFICIAL_IMAGE
public static final PreferenceType GRAVATAR_IMAGE
public static final PreferenceType KUDOS_RATING
public static final PreferenceType PICTURES
public static final PreferenceType ONLINE_STATUS
public static PreferenceType[] values()
for (PreferenceType c : PreferenceType.values()) System.out.println(c);
public static PreferenceType 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 © 2008–2018 The Sakai Foundation. All rights reserved.