Enum ConfigurableFlowContextParameterNames
- java.lang.Object
-
- java.lang.Enum<ConfigurableFlowContextParameterNames>
-
- com.hybris.cockpitng.widgets.configurableflow.ConfigurableFlowContextParameterNames
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConfigurableFlowContextParameterNames>
public enum ConfigurableFlowContextParameterNames extends java.lang.Enum<ConfigurableFlowContextParameterNames>
Names of parameters used in ConfigurableFlow context
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NON_PERSISTABLE_PROPERTIES_LISTList of properties to exclude from persistencePARENT_OBJECTParent object instancePARENT_OBJECT_TYPEParent object type nameSUCCESS_NOTIFICATION_IDwhich Notification Widget should display notification after successful saving objectTYPE_CODEType code
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Internal namestatic ConfigurableFlowContextParameterNamesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConfigurableFlowContextParameterNames[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE_CODE
public static final ConfigurableFlowContextParameterNames TYPE_CODE
Type code
-
NON_PERSISTABLE_PROPERTIES_LIST
public static final ConfigurableFlowContextParameterNames NON_PERSISTABLE_PROPERTIES_LIST
List of properties to exclude from persistence
-
PARENT_OBJECT
public static final ConfigurableFlowContextParameterNames PARENT_OBJECT
Parent object instance
-
PARENT_OBJECT_TYPE
public static final ConfigurableFlowContextParameterNames PARENT_OBJECT_TYPE
Parent object type name
-
SUCCESS_NOTIFICATION_ID
public static final ConfigurableFlowContextParameterNames SUCCESS_NOTIFICATION_ID
which Notification Widget should display notification after successful saving object
-
-
Method Detail
-
values
public static ConfigurableFlowContextParameterNames[] 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 (ConfigurableFlowContextParameterNames c : ConfigurableFlowContextParameterNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigurableFlowContextParameterNames 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
-
getName
public java.lang.String getName()
Internal name- Returns:
- internal name
-
-