Package com.adyen.model.marketpay
Enum UpdatePayoutScheduleRequest.ActionEnum
- java.lang.Object
-
- java.lang.Enum<UpdatePayoutScheduleRequest.ActionEnum>
-
- com.adyen.model.marketpay.UpdatePayoutScheduleRequest.ActionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<UpdatePayoutScheduleRequest.ActionEnum>
- Enclosing class:
- UpdatePayoutScheduleRequest
public static enum UpdatePayoutScheduleRequest.ActionEnum extends Enum<UpdatePayoutScheduleRequest.ActionEnum>
behavior for the current payout period (relevant if the schedule already exists)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static UpdatePayoutScheduleRequest.ActionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static UpdatePayoutScheduleRequest.ActionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOSE
@SerializedName("CLOSE") public static final UpdatePayoutScheduleRequest.ActionEnum CLOSE
-
NOTHING
@SerializedName("NOTHING") public static final UpdatePayoutScheduleRequest.ActionEnum NOTHING
-
UPDATE
@SerializedName("UPDATE") public static final UpdatePayoutScheduleRequest.ActionEnum UPDATE
-
-
Method Detail
-
values
public static UpdatePayoutScheduleRequest.ActionEnum[] 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 (UpdatePayoutScheduleRequest.ActionEnum c : UpdatePayoutScheduleRequest.ActionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdatePayoutScheduleRequest.ActionEnum 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<UpdatePayoutScheduleRequest.ActionEnum>
-
-