Package co.mastermindcms.modules.enums
Enum AccountPayoutStatus
- java.lang.Object
-
- java.lang.Enum<AccountPayoutStatus>
-
- co.mastermindcms.modules.enums.AccountPayoutStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AccountPayoutStatus>
public enum AccountPayoutStatus extends java.lang.Enum<AccountPayoutStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSENT_ACCOUNT
FAILED
INCOMPLETE_ACCOUNT
OK
PROCESSING
-
Constructor Summary
Constructors Modifier Constructor Description private
AccountPayoutStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccountPayoutStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AccountPayoutStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABSENT_ACCOUNT
public static final AccountPayoutStatus ABSENT_ACCOUNT
-
INCOMPLETE_ACCOUNT
public static final AccountPayoutStatus INCOMPLETE_ACCOUNT
-
OK
public static final AccountPayoutStatus OK
-
PROCESSING
public static final AccountPayoutStatus PROCESSING
-
FAILED
public static final AccountPayoutStatus FAILED
-
-
Method Detail
-
values
public static AccountPayoutStatus[] 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 (AccountPayoutStatus c : AccountPayoutStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountPayoutStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-