Enum EditorMainToolbar.SimpleButton
- java.lang.Object
-
- java.lang.Enum<EditorMainToolbar.SimpleButton>
-
- com.atlassian.confluence.pageobjects.component.editor.toolbars.EditorMainToolbar.SimpleButton
-
- All Implemented Interfaces:
Serializable
,Comparable<EditorMainToolbar.SimpleButton>
- Enclosing class:
- EditorMainToolbar
public static enum EditorMainToolbar.SimpleButton extends Enum<EditorMainToolbar.SimpleButton>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALIGN_CENTER
ALIGN_LEFT
ALIGN_RIGHT
BOLD
BULLETLIST
COLOR_BUTTON
COLOR_SELECTOR_BUTTON
FORMAT_DROPDOWN
HELP
INDENT
INLINE_TASKS
INSERT_DROPDOWN
ITALIC
LINK
MORE
NUMBEREDLIST
OUTDENT
REDO
UNDERLINE
UNDO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
static EditorMainToolbar.SimpleButton
valueOf(String name)
Returns the enum constant of this type with the specified name.static EditorMainToolbar.SimpleButton[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOLD
public static final EditorMainToolbar.SimpleButton BOLD
-
ITALIC
public static final EditorMainToolbar.SimpleButton ITALIC
-
UNDERLINE
public static final EditorMainToolbar.SimpleButton UNDERLINE
-
BULLETLIST
public static final EditorMainToolbar.SimpleButton BULLETLIST
-
NUMBEREDLIST
public static final EditorMainToolbar.SimpleButton NUMBEREDLIST
-
INLINE_TASKS
public static final EditorMainToolbar.SimpleButton INLINE_TASKS
-
INDENT
public static final EditorMainToolbar.SimpleButton INDENT
-
OUTDENT
public static final EditorMainToolbar.SimpleButton OUTDENT
-
ALIGN_LEFT
public static final EditorMainToolbar.SimpleButton ALIGN_LEFT
-
ALIGN_CENTER
public static final EditorMainToolbar.SimpleButton ALIGN_CENTER
-
ALIGN_RIGHT
public static final EditorMainToolbar.SimpleButton ALIGN_RIGHT
-
UNDO
public static final EditorMainToolbar.SimpleButton UNDO
-
REDO
public static final EditorMainToolbar.SimpleButton REDO
-
LINK
public static final EditorMainToolbar.SimpleButton LINK
-
FORMAT_DROPDOWN
public static final EditorMainToolbar.SimpleButton FORMAT_DROPDOWN
-
COLOR_SELECTOR_BUTTON
public static final EditorMainToolbar.SimpleButton COLOR_SELECTOR_BUTTON
-
COLOR_BUTTON
public static final EditorMainToolbar.SimpleButton COLOR_BUTTON
-
INSERT_DROPDOWN
public static final EditorMainToolbar.SimpleButton INSERT_DROPDOWN
-
HELP
public static final EditorMainToolbar.SimpleButton HELP
-
MORE
public static final EditorMainToolbar.SimpleButton MORE
-
-
Method Detail
-
values
public static EditorMainToolbar.SimpleButton[] 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 (EditorMainToolbar.SimpleButton c : EditorMainToolbar.SimpleButton.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EditorMainToolbar.SimpleButton valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getId
public String getId()
-
-