Enum EditorMessages
- java.lang.Object
-
- java.lang.Enum<EditorMessages>
-
- com.atlassian.confluence.pageobjects.selenium3.component.editor.EditorMessages
-
- All Implemented Interfaces:
Serializable
,Comparable<EditorMessages>
@Deprecated public enum EditorMessages extends Enum<EditorMessages>
Deprecated.in 5.8. UseEditorMessages
instead from maven modulecom.atlassian.confluence:confluence-webdriver-pageobjects
. See the new README.A place to store messages that appear in the edit UI. Migrated from the static constants incom.atlassian.confluence.selenium.EditorDraftsTest
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAFT_DISCARDED
Deprecated.DRAFT_EXISTS
Deprecated.NEW_PAGE_DRAFT_EXISTS
Deprecated.NOT_LOGGED_IN_EDITOR_WARNING
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getMessage()
Deprecated.static EditorMessages
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static EditorMessages[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW_PAGE_DRAFT_EXISTS
public static final EditorMessages NEW_PAGE_DRAFT_EXISTS
Deprecated.
-
DRAFT_EXISTS
public static final EditorMessages DRAFT_EXISTS
Deprecated.
-
DRAFT_DISCARDED
public static final EditorMessages DRAFT_DISCARDED
Deprecated.
-
NOT_LOGGED_IN_EDITOR_WARNING
public static final EditorMessages NOT_LOGGED_IN_EDITOR_WARNING
Deprecated.
-
-
Method Detail
-
values
public static EditorMessages[] values()
Deprecated.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 (EditorMessages c : EditorMessages.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EditorMessages valueOf(String name)
Deprecated.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
-
getMessage
public String getMessage()
Deprecated.
-
-