Package com.adyen.model.transfers
Enum InternalReviewTrackingData.ReasonEnum
- java.lang.Object
-
- java.lang.Enum<InternalReviewTrackingData.ReasonEnum>
-
- com.adyen.model.transfers.InternalReviewTrackingData.ReasonEnum
-
- All Implemented Interfaces:
Serializable,Comparable<InternalReviewTrackingData.ReasonEnum>
- Enclosing class:
- InternalReviewTrackingData
public static enum InternalReviewTrackingData.ReasonEnum extends Enum<InternalReviewTrackingData.ReasonEnum>
The reason why the transfer failed Adyen's internal review. Possible values: - **refusedForRegulatoryReasons**: the transfer does not comply with Adyen's risk policy. For more information, [contact the Support Team](https://www.adyen.help/hc/en-us/requests/new).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REFUSEDFORREGULATORYREASONS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InternalReviewTrackingData.ReasonEnumfromValue(String value)StringgetValue()StringtoString()static InternalReviewTrackingData.ReasonEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static InternalReviewTrackingData.ReasonEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REFUSEDFORREGULATORYREASONS
public static final InternalReviewTrackingData.ReasonEnum REFUSEDFORREGULATORYREASONS
-
-
Method Detail
-
values
public static InternalReviewTrackingData.ReasonEnum[] 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 (InternalReviewTrackingData.ReasonEnum c : InternalReviewTrackingData.ReasonEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InternalReviewTrackingData.ReasonEnum 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<InternalReviewTrackingData.ReasonEnum>
-
fromValue
public static InternalReviewTrackingData.ReasonEnum fromValue(String value)
-
-