Enum PayoutStateWebhookData.ResultEnum
- java.lang.Object
-
- java.lang.Enum<PayoutStateWebhookData.ResultEnum>
-
- com.adyen.model.configurationwebhooks.PayoutStateWebhookData.ResultEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PayoutStateWebhookData.ResultEnum>
- Enclosing class:
- PayoutStateWebhookData
public static enum PayoutStateWebhookData.ResultEnum extends Enum<PayoutStateWebhookData.ResultEnum>
The result of the execution.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PayoutStateWebhookData.ResultEnumfromValue(String value)StringgetValue()StringtoString()static PayoutStateWebhookData.ResultEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PayoutStateWebhookData.ResultEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILED
public static final PayoutStateWebhookData.ResultEnum FAILED
-
SKIPPED
public static final PayoutStateWebhookData.ResultEnum SKIPPED
-
SUCCEEDED
public static final PayoutStateWebhookData.ResultEnum SUCCEEDED
-
-
Method Detail
-
values
public static PayoutStateWebhookData.ResultEnum[] 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 (PayoutStateWebhookData.ResultEnum c : PayoutStateWebhookData.ResultEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PayoutStateWebhookData.ResultEnum 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<PayoutStateWebhookData.ResultEnum>
-
fromValue
public static PayoutStateWebhookData.ResultEnum fromValue(String value)
-
-