Package com.adyen.model.balanceplatform
Enum LimitStatus
- java.lang.Object
-
- java.lang.Enum<LimitStatus>
-
- com.adyen.model.balanceplatform.LimitStatus
-
- All Implemented Interfaces:
Serializable,Comparable<LimitStatus>
public enum LimitStatus extends Enum<LimitStatus>
The status of the transfer limit. Possible values: * **active**: the limit is currently active. * **inactive**: the limit is currently inactive. * **pendingSCA**: the limit is pending until your user performs SCA. * **scheduled**: the limit is scheduled to become active at a future date.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEINACTIVEPENDINGSCASCHEDULED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LimitStatusfromValue(String value)StringgetValue()StringtoString()static LimitStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static LimitStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final LimitStatus ACTIVE
-
INACTIVE
public static final LimitStatus INACTIVE
-
PENDINGSCA
public static final LimitStatus PENDINGSCA
-
SCHEDULED
public static final LimitStatus SCHEDULED
-
-
Method Detail
-
values
public static LimitStatus[] 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 (LimitStatus c : LimitStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LimitStatus 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<LimitStatus>
-
fromValue
public static LimitStatus fromValue(String value)
-
-