public enum TriggerFrequency extends Enum<TriggerFrequency>
| Enum Constant and Description |
|---|
BYMINUTE |
DAILY |
HOURLY |
MONTHLY |
ONCE |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static TriggerFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggerFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerFrequency BYMINUTE
public static final TriggerFrequency HOURLY
public static final TriggerFrequency DAILY
public static final TriggerFrequency WEEKLY
public static final TriggerFrequency MONTHLY
public static final TriggerFrequency ONCE
public static TriggerFrequency[] values()
for (TriggerFrequency c : TriggerFrequency.values()) System.out.println(c);
public static TriggerFrequency 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 © 2021–2022 Amazon Web Services. All rights reserved.