public enum SmsDeliveryDay extends Enum<SmsDeliveryDay>
| Modifier and Type | Class and Description |
|---|---|
static class |
SmsDeliveryDay.Adapter |
| Enum Constant and Description |
|---|
FRIDAY |
MONDAY |
SATURDAY |
SUNDAY |
THURSDAY |
TUESDAY |
WEDNESDAY |
| Modifier and Type | Method and Description |
|---|---|
static SmsDeliveryDay |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static SmsDeliveryDay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmsDeliveryDay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmsDeliveryDay MONDAY
public static final SmsDeliveryDay TUESDAY
public static final SmsDeliveryDay WEDNESDAY
public static final SmsDeliveryDay THURSDAY
public static final SmsDeliveryDay FRIDAY
public static final SmsDeliveryDay SATURDAY
public static final SmsDeliveryDay SUNDAY
public static SmsDeliveryDay[] values()
for (SmsDeliveryDay c : SmsDeliveryDay.values()) System.out.println(c);
public static SmsDeliveryDay 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 nullpublic String getValue()
public String toString()
toString in class Enum<SmsDeliveryDay>public static SmsDeliveryDay fromValue(String value)
Copyright © 2022. All rights reserved.