public enum DataRetentionEvaluationFrequency extends java.lang.Enum<DataRetentionEvaluationFrequency>
Enum Constant and Description |
---|
ANNUALLY
Annually (once a year, i.e. every 12 months).
|
DAILY
Daily.
|
MONTHLY
Monthly (12 times a year, i.e. every month).
|
QUARTERLY
Quarterly (or trimestrially, i.e. 4 times a year, i.e. once per trimester, i.e. every three months).
|
SEMIANNUALLY
Semi-annually (twice a year, i.e. every six months).
|
Modifier and Type | Field and Description |
---|---|
static java.util.Map<java.lang.String,DataRetentionEvaluationFrequency> |
VALUE_MAP
An immutable map of data retention evaluation frequency names (in lowercase) to their corresponding
DataRetentionEvaluationFrequency enum values. |
Modifier and Type | Method and Description |
---|---|
static DataRetentionEvaluationFrequency |
fromValue(java.lang.String value)
Returns the
DataRetentionEvaluationFrequency enum value matching the given string representation,
or null if no matching value is found. |
java.lang.String |
getValue()
Returns the string representation of the enum value.
|
static DataRetentionEvaluationFrequency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataRetentionEvaluationFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRetentionEvaluationFrequency ANNUALLY
public static final DataRetentionEvaluationFrequency SEMIANNUALLY
public static final DataRetentionEvaluationFrequency QUARTERLY
public static final DataRetentionEvaluationFrequency MONTHLY
public static final DataRetentionEvaluationFrequency DAILY
public static final java.util.Map<java.lang.String,DataRetentionEvaluationFrequency> VALUE_MAP
DataRetentionEvaluationFrequency
enum values.
Used for efficient lookup of evaluation frequencies from string representations.public static DataRetentionEvaluationFrequency[] values()
for (DataRetentionEvaluationFrequency c : DataRetentionEvaluationFrequency.values()) System.out.println(c);
public static DataRetentionEvaluationFrequency 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 static DataRetentionEvaluationFrequency fromValue(java.lang.String value)
DataRetentionEvaluationFrequency
enum value matching the given string representation,
or null
if no matching value is found.
The comparison is case-insensitive.value
- the string representation of the enum valueDataRetentionEvaluationFrequency
enum value, or null
if not foundCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.