public enum NotificationsUsingLookup extends Enum<NotificationsUsingLookup>
| Enum Constant and Description |
|---|
EMAIL_AND_SMS |
EMAIL_ONLY |
| Modifier and Type | Field and Description |
|---|---|
boolean |
shouldSendEmail |
boolean |
shouldSendSms |
| Modifier and Type | Method and Description |
|---|---|
static NotificationsUsingLookup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationsUsingLookup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationsUsingLookup EMAIL_ONLY
public static final NotificationsUsingLookup EMAIL_AND_SMS
public final boolean shouldSendEmail
public final boolean shouldSendSms
public static NotificationsUsingLookup[] values()
for (NotificationsUsingLookup c : NotificationsUsingLookup.values()) System.out.println(c);
public static NotificationsUsingLookup 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 Digipost. All rights reserved.