public enum PullFrequency extends Enum<PullFrequency>
| Enum Constant and Description |
|---|
HOUR_1 |
HOUR_4 |
HOUR_8 |
MINUTES_15 |
MINUTES_30 |
| Modifier and Type | Method and Description |
|---|---|
static PullFrequency |
fromValue(String name)
Returns the PullFrequency.
|
Integer |
getMinutesValue() |
String |
getName() |
static PullFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PullFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PullFrequency MINUTES_15
public static final PullFrequency MINUTES_30
public static final PullFrequency HOUR_1
public static final PullFrequency HOUR_4
public static final PullFrequency HOUR_8
public static PullFrequency[] values()
for (PullFrequency c : PullFrequency.values()) System.out.println(c);
public static PullFrequency 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 getName()
public Integer getMinutesValue()
public static PullFrequency fromValue(String name)
name - the name is string typeCopyright © 2022. All rights reserved.