public enum NotificationFrequency extends Enum<NotificationFrequency> implements com.google.gwt.user.client.rpc.IsSerializable
| Enum Constant and Description |
|---|
daily |
monthly |
never |
realtime |
weekly |
| Modifier and Type | Method and Description |
|---|---|
static NotificationFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationFrequency never
public static final NotificationFrequency realtime
public static final NotificationFrequency daily
public static final NotificationFrequency weekly
public static final NotificationFrequency monthly
public static NotificationFrequency[] values()
for (NotificationFrequency c : NotificationFrequency.values()) System.out.println(c);
public static NotificationFrequency 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 © 2018. All rights reserved.