Enum InsertDropdownMenu.InsertItem
- java.lang.Object
-
- java.lang.Enum<InsertDropdownMenu.InsertItem>
-
- com.atlassian.confluence.pageobjects.component.editor.toolbars.InsertDropdownMenu.InsertItem
-
- All Implemented Interfaces:
Serializable
,Comparable<InsertDropdownMenu.InsertItem>
- Enclosing class:
- InsertDropdownMenu
public static enum InsertDropdownMenu.InsertItem extends Enum<InsertDropdownMenu.InsertItem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HORIZONTAL_RULE
IMAGE
LINK
MACRO
SYMBOL
TASK_LIST
WIKI_MARKUP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
static InsertDropdownMenu.InsertItem
valueOf(String name)
Returns the enum constant of this type with the specified name.static InsertDropdownMenu.InsertItem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYMBOL
public static final InsertDropdownMenu.InsertItem SYMBOL
-
TASK_LIST
public static final InsertDropdownMenu.InsertItem TASK_LIST
-
MACRO
public static final InsertDropdownMenu.InsertItem MACRO
-
WIKI_MARKUP
public static final InsertDropdownMenu.InsertItem WIKI_MARKUP
-
LINK
public static final InsertDropdownMenu.InsertItem LINK
-
IMAGE
public static final InsertDropdownMenu.InsertItem IMAGE
-
HORIZONTAL_RULE
public static final InsertDropdownMenu.InsertItem HORIZONTAL_RULE
-
-
Method Detail
-
values
public static InsertDropdownMenu.InsertItem[] 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 (InsertDropdownMenu.InsertItem c : InsertDropdownMenu.InsertItem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InsertDropdownMenu.InsertItem 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()
-
-