@Generated public enum DataRefresh extends Enum<DataRefresh>
Enum Constant and Description |
---|
DAILY |
HOURLY |
MINUTE |
MONTHLY |
NONE |
QUARTERLY |
SECOND |
WEEKLY |
YEARLY |
Modifier and Type | Method and Description |
---|---|
static DataRefresh |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRefresh[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRefresh DAILY
public static final DataRefresh HOURLY
public static final DataRefresh MINUTE
public static final DataRefresh MONTHLY
public static final DataRefresh NONE
public static final DataRefresh QUARTERLY
public static final DataRefresh SECOND
public static final DataRefresh WEEKLY
public static final DataRefresh YEARLY
public static DataRefresh[] values()
for (DataRefresh c : DataRefresh.values()) System.out.println(c);
public static DataRefresh 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 © 2024. All rights reserved.