Enum DefaultMapEditorRenderer.InlineEditorMode
- java.lang.Object
-
- java.lang.Enum<DefaultMapEditorRenderer.InlineEditorMode>
-
- com.hybris.cockpitng.editor.defaultmap.DefaultMapEditorRenderer.InlineEditorMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DefaultMapEditorRenderer.InlineEditorMode>
- Enclosing class:
- DefaultMapEditorRenderer<K,V>
protected static enum DefaultMapEditorRenderer.InlineEditorMode extends java.lang.Enum<DefaultMapEditorRenderer.InlineEditorMode>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultMapEditorRenderer.InlineEditorModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultMapEditorRenderer.InlineEditorMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final DefaultMapEditorRenderer.InlineEditorMode CREATE
-
EDIT
public static final DefaultMapEditorRenderer.InlineEditorMode EDIT
-
-
Method Detail
-
values
public static DefaultMapEditorRenderer.InlineEditorMode[] 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 (DefaultMapEditorRenderer.InlineEditorMode c : DefaultMapEditorRenderer.InlineEditorMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultMapEditorRenderer.InlineEditorMode 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
-
-