Enum NotificationEventConfiguration.IncludeModeEnum
- java.lang.Object
-
- java.lang.Enum<NotificationEventConfiguration.IncludeModeEnum>
-
- com.adyen.model.marketpay.notification.NotificationEventConfiguration.IncludeModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationEventConfiguration.IncludeModeEnum>
- Enclosing class:
- NotificationEventConfiguration
public static enum NotificationEventConfiguration.IncludeModeEnum extends Enum<NotificationEventConfiguration.IncludeModeEnum>
specifies if the notification has to be sent in case an event of the mentioned type has occurred, or of events other than event of the mentioned type have occurred
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static NotificationEventConfiguration.IncludeModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationEventConfiguration.IncludeModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCLUDE
@SerializedName("EXCLUDE") public static final NotificationEventConfiguration.IncludeModeEnum EXCLUDE
-
INCLUDE
@SerializedName("INCLUDE") public static final NotificationEventConfiguration.IncludeModeEnum INCLUDE
-
-
Method Detail
-
values
public static NotificationEventConfiguration.IncludeModeEnum[] 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 (NotificationEventConfiguration.IncludeModeEnum c : NotificationEventConfiguration.IncludeModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationEventConfiguration.IncludeModeEnum 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<NotificationEventConfiguration.IncludeModeEnum>
-
-