Enum EditorAreaParameterNames
- java.lang.Object
-
- java.lang.Enum<EditorAreaParameterNames>
-
- com.hybris.cockpitng.widgets.editorarea.EditorAreaParameterNames
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EditorAreaParameterNames>
public enum EditorAreaParameterNames extends java.lang.Enum<EditorAreaParameterNames>
Names of parameters used for EditorArea attributes configuration
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTILINE_EDITOR_ROWSNumber of rows in text editorNESTED_OBJECT_WIZARD_NON_PERSISTABLE_PROPERTIES_LISTList of properties to exclude from persistence for a nested objectROWSDeprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<EditorAreaParameterNames>forName(java.lang.String name)java.lang.StringgetName()Internal namestatic EditorAreaParameterNamesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EditorAreaParameterNames[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MULTILINE_EDITOR_ROWS
public static final EditorAreaParameterNames MULTILINE_EDITOR_ROWS
Number of rows in text editor
-
ROWS
@Deprecated(since="ages", forRemoval=true) public static final EditorAreaParameterNames ROWSDeprecated, for removal: This API element is subject to removal in a future version.Number of rows in text editor
-
NESTED_OBJECT_WIZARD_NON_PERSISTABLE_PROPERTIES_LIST
public static final EditorAreaParameterNames NESTED_OBJECT_WIZARD_NON_PERSISTABLE_PROPERTIES_LIST
List of properties to exclude from persistence for a nested object
-
-
Method Detail
-
values
public static EditorAreaParameterNames[] 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 (EditorAreaParameterNames c : EditorAreaParameterNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EditorAreaParameterNames 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
-
forName
public static java.util.Optional<EditorAreaParameterNames> forName(java.lang.String name)
-
-