Enum NotificationEventConfiguration.IncludeModeEnum
- java.lang.Object
-
- java.lang.Enum<NotificationEventConfiguration.IncludeModeEnum>
-
- com.adyen.model.marketpayconfiguration.NotificationEventConfiguration.IncludeModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationEventConfiguration.IncludeModeEnum>
- Enclosing class:
- NotificationEventConfiguration
public static enum NotificationEventConfiguration.IncludeModeEnum extends Enum<NotificationEventConfiguration.IncludeModeEnum>
Indicates whether the specified `eventType` is sent to your webhook endpoint. Possible values: * **INCLUDE**: Send the specified `eventType`. * **EXCLUDE**: Send all event types except the specified `eventType` and other event types with the `includeMode` set to **EXCLUDE**.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NotificationEventConfiguration.IncludeModeEnumfromValue(String value)StringgetValue()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
public static final NotificationEventConfiguration.IncludeModeEnum EXCLUDE
-
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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<NotificationEventConfiguration.IncludeModeEnum>
-
fromValue
public static NotificationEventConfiguration.IncludeModeEnum fromValue(String value)
-
-