Enum CxProcessParameterType
- java.lang.Object
-
- java.lang.Enum<CxProcessParameterType>
-
- de.hybris.platform.personalizationservices.process.strategies.CxProcessParameterType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CxProcessParameterType>
public enum CxProcessParameterType extends java.lang.Enum<CxProcessParameterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANONYMOUS_SEGMENTATIONGenerated enum value forCxProcessParameterType.ANONYMOUS_SEGMENTATIONvalue defined at extensionpersonalizationservices.BASE_SITEGenerated enum value forCxProcessParameterType.BASE_SITEvalue defined at extensionpersonalizationservices.PROFILE_IDGenerated enum value forCxProcessParameterType.PROFILE_IDvalue defined at extensionpersonalizationyprofile.SEGMENTATIONGenerated enum value forCxProcessParameterType.SEGMENTATIONvalue defined at extensionpersonalizationservices.SESSION_TOKENGenerated enum value forCxProcessParameterType.SESSION_TOKENvalue defined at extensionpersonalizationservices.USER_CONSENTSGenerated enum value forCxProcessParameterType.USER_CONSENTSvalue defined at extensionpersonalizationservices.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CxProcessParameterTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CxProcessParameterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASE_SITE
public static final CxProcessParameterType BASE_SITE
Generated enum value forCxProcessParameterType.BASE_SITEvalue defined at extensionpersonalizationservices.
-
SESSION_TOKEN
public static final CxProcessParameterType SESSION_TOKEN
Generated enum value forCxProcessParameterType.SESSION_TOKENvalue defined at extensionpersonalizationservices.
-
USER_CONSENTS
public static final CxProcessParameterType USER_CONSENTS
Generated enum value forCxProcessParameterType.USER_CONSENTSvalue defined at extensionpersonalizationservices.
-
ANONYMOUS_SEGMENTATION
public static final CxProcessParameterType ANONYMOUS_SEGMENTATION
Generated enum value forCxProcessParameterType.ANONYMOUS_SEGMENTATIONvalue defined at extensionpersonalizationservices.
-
SEGMENTATION
public static final CxProcessParameterType SEGMENTATION
Generated enum value forCxProcessParameterType.SEGMENTATIONvalue defined at extensionpersonalizationservices.
-
PROFILE_ID
public static final CxProcessParameterType PROFILE_ID
Generated enum value forCxProcessParameterType.PROFILE_IDvalue defined at extensionpersonalizationyprofile.
-
-
Method Detail
-
values
public static CxProcessParameterType[] 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 (CxProcessParameterType c : CxProcessParameterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CxProcessParameterType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-