Enum EColorDecoratorsActivatedOnMode
- java.lang.Object
-
- java.lang.Enum<EColorDecoratorsActivatedOnMode>
-
- org.primefaces.extensions.model.monacoeditor.EColorDecoratorsActivatedOnMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EColorDecoratorsActivatedOnMode>
public enum EColorDecoratorsActivatedOnMode extends java.lang.Enum<EColorDecoratorsActivatedOnMode>
rols what is the condition to spawn a color picker from a color decorator.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLICKCLICK_AND_HOVERHOVER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EColorDecoratorsActivatedOnModeparseString(java.lang.String name)java.lang.StringtoString()static EColorDecoratorsActivatedOnModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EColorDecoratorsActivatedOnMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLICK_AND_HOVER
public static final EColorDecoratorsActivatedOnMode CLICK_AND_HOVER
-
CLICK
public static final EColorDecoratorsActivatedOnMode CLICK
-
HOVER
public static final EColorDecoratorsActivatedOnMode HOVER
-
-
Method Detail
-
values
public static EColorDecoratorsActivatedOnMode[] 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 (EColorDecoratorsActivatedOnMode c : EColorDecoratorsActivatedOnMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EColorDecoratorsActivatedOnMode 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<EColorDecoratorsActivatedOnMode>
-
parseString
public static EColorDecoratorsActivatedOnMode parseString(java.lang.String name)
-
-