public enum NotificationSqsMessageCadence extends java.lang.Enum<NotificationSqsMessageCadence>
| Modifier and Type | Class and Description |
|---|---|
static class |
NotificationSqsMessageCadence.Adapter |
| Enum Constant and Description |
|---|
DAILY |
INDIVIDUAL |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static NotificationSqsMessageCadence |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static NotificationSqsMessageCadence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationSqsMessageCadence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationSqsMessageCadence DAILY
public static final NotificationSqsMessageCadence WEEKLY
public static final NotificationSqsMessageCadence INDIVIDUAL
public static NotificationSqsMessageCadence[] values()
for (NotificationSqsMessageCadence c : NotificationSqsMessageCadence.values()) System.out.println(c);
public static NotificationSqsMessageCadence valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<NotificationSqsMessageCadence>public static NotificationSqsMessageCadence fromValue(java.lang.String value)