public static enum RegistrationService.RegistrationReminder extends Enum<RegistrationService.RegistrationReminder>
| Enum Constant and Description |
|---|
ASK_FOR_REGISTRATION |
DONT_ASK_FOR_REGISTRATION |
REMIND_LATER |
| Modifier and Type | Method and Description |
|---|---|
static RegistrationService.RegistrationReminder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistrationService.RegistrationReminder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistrationService.RegistrationReminder ASK_FOR_REGISTRATION
public static final RegistrationService.RegistrationReminder DONT_ASK_FOR_REGISTRATION
public static final RegistrationService.RegistrationReminder REMIND_LATER
public static RegistrationService.RegistrationReminder[] values()
for (RegistrationService.RegistrationReminder c : RegistrationService.RegistrationReminder.values()) System.out.println(c);
public static RegistrationService.RegistrationReminder 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 © 2017. All rights reserved.