Enum HighlightActionsRenderingStyle
- java.lang.Object
-
- java.lang.Enum<HighlightActionsRenderingStyle>
-
- ro.sync.ecss.extensions.api.highlights.HighlightActionsRenderingStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HighlightActionsRenderingStyle>
@API(type=EXTENDABLE, src=PUBLIC) public enum HighlightActionsRenderingStyle extends java.lang.Enum<HighlightActionsRenderingStyle>
The rendering style of the actions associated with a highlight.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HighlightActionsRenderingStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HighlightActionsRenderingStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POPUP
public static final HighlightActionsRenderingStyle POPUP
The pop-up style. The actions will be added inside e pp-up menu.
-
TOOLBAR
public static final HighlightActionsRenderingStyle TOOLBAR
The toolbar style. The actions will be added to a panel to look like a toolbar
-
-
Method Detail
-
values
public static HighlightActionsRenderingStyle[] 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 (HighlightActionsRenderingStyle c : HighlightActionsRenderingStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HighlightActionsRenderingStyle 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
-
-