Enum RewardPeriodType
- java.lang.Object
-
- java.lang.Enum<RewardPeriodType>
-
- org.exoplatform.wallet.model.reward.RewardPeriodType
-
- All Implemented Interfaces:
Serializable,Comparable<RewardPeriodType>
public enum RewardPeriodType extends Enum<RewardPeriodType>
-
-
Field Summary
Fields Modifier and Type Field Description static RewardPeriodTypeDEFAULT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RewardPeriodgetPeriodOfTime(LocalDateTime localDateTime)static RewardPeriodTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RewardPeriodType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WEEK
public static final RewardPeriodType WEEK
-
MONTH
public static final RewardPeriodType MONTH
-
QUARTER
public static final RewardPeriodType QUARTER
-
SEMESTER
public static final RewardPeriodType SEMESTER
-
YEAR
public static final RewardPeriodType YEAR
-
-
Field Detail
-
DEFAULT
public static final RewardPeriodType DEFAULT
-
-
Method Detail
-
values
public static RewardPeriodType[] 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 (RewardPeriodType c : RewardPeriodType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RewardPeriodType 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
-
getPeriodOfTime
public RewardPeriod getPeriodOfTime(LocalDateTime localDateTime)
-
-