Enum Scene7Constants.Scene7AssetProperty
- java.lang.Object
-
- java.lang.Enum<Scene7Constants.Scene7AssetProperty>
-
- com.day.cq.dam.scene7.api.constants.Scene7Constants.Scene7AssetProperty
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Scene7Constants.Scene7AssetProperty>
- Enclosing class:
- Scene7Constants
public static enum Scene7Constants.Scene7AssetProperty extends java.lang.Enum<Scene7Constants.Scene7AssetProperty>
Scene7 asset property keys
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Scene7Constants.Scene7AssetProperty
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Scene7Constants.Scene7AssetProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSET_TYPE_STRING
public static final Scene7Constants.Scene7AssetProperty ASSET_TYPE_STRING
-
ASSET_SUBTYPE_STRING
public static final Scene7Constants.Scene7AssetProperty ASSET_SUBTYPE_STRING
-
SCENE7_ASSET_TYPE
public static final Scene7Constants.Scene7AssetProperty SCENE7_ASSET_TYPE
-
ASSET_HANDLE
public static final Scene7Constants.Scene7AssetProperty ASSET_HANDLE
-
NAME
public static final Scene7Constants.Scene7AssetProperty NAME
-
FILE_NAME
public static final Scene7Constants.Scene7AssetProperty FILE_NAME
-
FOLDER
public static final Scene7Constants.Scene7AssetProperty FOLDER
-
FOLDER_HANDLE
public static final Scene7Constants.Scene7AssetProperty FOLDER_HANDLE
-
CREATED_BY
public static final Scene7Constants.Scene7AssetProperty CREATED_BY
-
MODIFIED_BY
public static final Scene7Constants.Scene7AssetProperty MODIFIED_BY
-
VIDEO_ENCODING_PRESET_ID
public static final Scene7Constants.Scene7AssetProperty VIDEO_ENCODING_PRESET_ID
-
CREATED_DATE
public static final Scene7Constants.Scene7AssetProperty CREATED_DATE
-
MODIFIED_DATE
public static final Scene7Constants.Scene7AssetProperty MODIFIED_DATE
-
ORIGINAL_FILE
public static final Scene7Constants.Scene7AssetProperty ORIGINAL_FILE
-
ORIGINAL_PATH
public static final Scene7Constants.Scene7AssetProperty ORIGINAL_PATH
-
WIDTH
public static final Scene7Constants.Scene7AssetProperty WIDTH
-
HEIGHT
public static final Scene7Constants.Scene7AssetProperty HEIGHT
-
URL_MODIFIER
public static final Scene7Constants.Scene7AssetProperty URL_MODIFIER
-
READY_TO_PUBLISH
public static final Scene7Constants.Scene7AssetProperty READY_TO_PUBLISH
-
FILE_SIZE
public static final Scene7Constants.Scene7AssetProperty FILE_SIZE
-
VIEWER_PRESET_TYPE
public static final Scene7Constants.Scene7AssetProperty VIEWER_PRESET_TYPE
-
VIEWER_PRESET_CONFIGURATION_SETTINGS
public static final Scene7Constants.Scene7AssetProperty VIEWER_PRESET_CONFIGURATION_SETTINGS
-
SUB_ASSETS
public static final Scene7Constants.Scene7AssetProperty SUB_ASSETS
-
ORIGINATOR
public static final Scene7Constants.Scene7AssetProperty ORIGINATOR
-
SMART_CROP
public static final Scene7Constants.Scene7AssetProperty SMART_CROP
-
USER_DATA
public static final Scene7Constants.Scene7AssetProperty USER_DATA
-
ASSET_PROPERTIES
public static final Scene7Constants.Scene7AssetProperty ASSET_PROPERTIES
-
IPS_IMAGE_URL
public static final Scene7Constants.Scene7AssetProperty IPS_IMAGE_URL
-
-
Method Detail
-
values
public static Scene7Constants.Scene7AssetProperty[] 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 (Scene7Constants.Scene7AssetProperty c : Scene7Constants.Scene7AssetProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Scene7Constants.Scene7AssetProperty 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
-
-