Enum CreateActions.SitesCreateActionType
- java.lang.Object
-
- java.lang.Enum<CreateActions.SitesCreateActionType>
-
- com.adobe.cq.testing.selenium.pagewidgets.cq.actions.CreateActions.SitesCreateActionType
-
- All Implemented Interfaces:
CreateActions.CreateActionType,java.io.Serializable,java.lang.Comparable<CreateActions.SitesCreateActionType>
- Enclosing class:
- CreateActions
public static enum CreateActions.SitesCreateActionType extends java.lang.Enum<CreateActions.SitesCreateActionType> implements CreateActions.CreateActionType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CSV_REPORTAction for Create CSV Report.FOLDERAction for Create Folder.LANGUAGE_COPYAction for Create Language Copy.LAUNCHAction for Create Launch.LIVE_COPYAction for Create Live Copy.PAGEAction for Create Page.SITEAction for Create Site.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCssClass()java.lang.StringgetRel()static CreateActions.SitesCreateActionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CreateActions.SitesCreateActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAGE
public static final CreateActions.SitesCreateActionType PAGE
Action for Create Page.
-
SITE
public static final CreateActions.SitesCreateActionType SITE
Action for Create Site.
-
LIVE_COPY
public static final CreateActions.SitesCreateActionType LIVE_COPY
Action for Create Live Copy.
-
LAUNCH
public static final CreateActions.SitesCreateActionType LAUNCH
Action for Create Launch.
-
LANGUAGE_COPY
public static final CreateActions.SitesCreateActionType LANGUAGE_COPY
Action for Create Language Copy.
-
FOLDER
public static final CreateActions.SitesCreateActionType FOLDER
Action for Create Folder.
-
CSV_REPORT
public static final CreateActions.SitesCreateActionType CSV_REPORT
Action for Create CSV Report.
-
-
Method Detail
-
values
public static CreateActions.SitesCreateActionType[] 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 (CreateActions.SitesCreateActionType c : CreateActions.SitesCreateActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateActions.SitesCreateActionType 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
-
getRel
public java.lang.String getRel()
- Specified by:
getRelin interfaceCreateActions.CreateActionType- Returns:
- the associated rel value for this action.
-
getCssClass
public java.lang.String getCssClass()
- Specified by:
getCssClassin interfaceCreateActions.CreateActionType- Returns:
- the associated css class value for this action.
-
-