Enum IntegrationConfig.Type
- java.lang.Object
-
- java.lang.Enum<IntegrationConfig.Type>
-
- software.amazon.awssdk.services.connectcampaignsv2.model.IntegrationConfig.Type
-
- All Implemented Interfaces:
Serializable,Comparable<IntegrationConfig.Type>
- Enclosing class:
- IntegrationConfig
public static enum IntegrationConfig.Type extends Enum<IntegrationConfig.Type>
- See Also:
IntegrationConfig.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMER_PROFILESQ_CONNECTUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntegrationConfig.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static IntegrationConfig.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOMER_PROFILES
public static final IntegrationConfig.Type CUSTOMER_PROFILES
-
Q_CONNECT
public static final IntegrationConfig.Type Q_CONNECT
-
UNKNOWN_TO_SDK_VERSION
public static final IntegrationConfig.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static IntegrationConfig.Type[] 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 (IntegrationConfig.Type c : IntegrationConfig.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntegrationConfig.Type 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
-
-