public static enum Mandate.FrequencyEnum extends Enum<Mandate.FrequencyEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
Mandate.FrequencyEnum.Adapter |
| Enum Constant and Description |
|---|
ADHOC |
BIWEEKLY |
DAILY |
HALFYEARLY |
MONTHLY |
QUARTERLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static Mandate.FrequencyEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static Mandate.FrequencyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mandate.FrequencyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mandate.FrequencyEnum ADHOC
public static final Mandate.FrequencyEnum DAILY
public static final Mandate.FrequencyEnum WEEKLY
public static final Mandate.FrequencyEnum BIWEEKLY
public static final Mandate.FrequencyEnum MONTHLY
public static final Mandate.FrequencyEnum QUARTERLY
public static final Mandate.FrequencyEnum HALFYEARLY
public static final Mandate.FrequencyEnum YEARLY
public static Mandate.FrequencyEnum[] values()
for (Mandate.FrequencyEnum c : Mandate.FrequencyEnum.values()) System.out.println(c);
public static Mandate.FrequencyEnum 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 getValue()
public String toString()
toString in class Enum<Mandate.FrequencyEnum>public static Mandate.FrequencyEnum fromValue(String text)
Copyright © 2022. All rights reserved.