Enum CreateActions.DAMCreateActionType
- java.lang.Object
-
- java.lang.Enum<CreateActions.DAMCreateActionType>
-
- com.adobe.cq.testing.selenium.pagewidgets.cq.actions.CreateActions.DAMCreateActionType
-
- All Implemented Interfaces:
CreateActions.CreateActionType,java.io.Serializable,java.lang.Comparable<CreateActions.DAMCreateActionType>
- Enclosing class:
- CreateActions
public static enum CreateActions.DAMCreateActionType extends java.lang.Enum<CreateActions.DAMCreateActionType> implements CreateActions.CreateActionType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTENT_FRAGMENTAction for Create DAM Content Fragment.FOLDERAction for Create DAM Folder.LIVE_COPYAction for Create DAM Live Copy.METADATAAction for Create DAM Metadata.UPLOAD_FILESAction for Upload DAM Files.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCssClass()java.lang.StringgetRel()static CreateActions.DAMCreateActionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CreateActions.DAMCreateActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FOLDER
public static final CreateActions.DAMCreateActionType FOLDER
Action for Create DAM Folder.
-
UPLOAD_FILES
public static final CreateActions.DAMCreateActionType UPLOAD_FILES
Action for Upload DAM Files.
-
CONTENT_FRAGMENT
public static final CreateActions.DAMCreateActionType CONTENT_FRAGMENT
Action for Create DAM Content Fragment.
-
LIVE_COPY
public static final CreateActions.DAMCreateActionType LIVE_COPY
Action for Create DAM Live Copy.
-
METADATA
public static final CreateActions.DAMCreateActionType METADATA
Action for Create DAM Metadata.
-
-
Method Detail
-
values
public static CreateActions.DAMCreateActionType[] 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.DAMCreateActionType c : CreateActions.DAMCreateActionType.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.DAMCreateActionType 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
-
-