Enum FrequencyCodeTO
- java.lang.Object
-
- java.lang.Enum<FrequencyCodeTO>
-
- de.adorsys.ledgers.middleware.api.domain.payment.FrequencyCodeTO
-
- All Implemented Interfaces:
Serializable,Comparable<FrequencyCodeTO>
public enum FrequencyCodeTO extends Enum<FrequencyCodeTO>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNUALDAILYEVERYTWOMONTHSEVERYTWOWEEKSMONTHLYMONTHLYVARIABLEQUARTERLYSEMIANNUALWEEKLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FrequencyCodeTOgetByValue(String value)StringtoString()static FrequencyCodeTOvalueOf(String name)Returns the enum constant of this type with the specified name.static FrequencyCodeTO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAILY
public static final FrequencyCodeTO DAILY
-
WEEKLY
public static final FrequencyCodeTO WEEKLY
-
EVERYTWOWEEKS
public static final FrequencyCodeTO EVERYTWOWEEKS
-
MONTHLY
public static final FrequencyCodeTO MONTHLY
-
EVERYTWOMONTHS
public static final FrequencyCodeTO EVERYTWOMONTHS
-
QUARTERLY
public static final FrequencyCodeTO QUARTERLY
-
SEMIANNUAL
public static final FrequencyCodeTO SEMIANNUAL
-
ANNUAL
public static final FrequencyCodeTO ANNUAL
-
MONTHLYVARIABLE
public static final FrequencyCodeTO MONTHLYVARIABLE
-
-
Method Detail
-
values
public static FrequencyCodeTO[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FrequencyCodeTO c : FrequencyCodeTO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FrequencyCodeTO valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getByValue
public static FrequencyCodeTO getByValue(String value)
-
toString
public String toString()
- Overrides:
toStringin classEnum<FrequencyCodeTO>
-
-