com.adobe.mediacore.metadata
Enum DefaultMetadataKeys

java.lang.Object
  extended by java.lang.Enum<DefaultMetadataKeys>
      extended by com.adobe.mediacore.metadata.DefaultMetadataKeys
All Implemented Interfaces:
Serializable, Comparable<DefaultMetadataKeys>

public enum DefaultMetadataKeys
extends Enum<DefaultMetadataKeys>

Default metadata keys used by PSDK framework.


Enum Constant Summary
AD_SIGNALING_MODE_KEY
           
ADVERTISING_METADATA
           
AUDITUDE_METADATA_KEY
           
CUSTOM_AD_MARKERS_METADATA_KEY
           
CUSTOM_PARAMETERS
           
DISABLE_CONTENT_CACHING
           
JSON_METADATA_KEY
           
MARKER_CONTENT_DURATION_KEY
           
MARKER_CONTENT_ID_KEY
           
MARKER_KEY
           
METADATA_KEY_ADJUST_SEEK_ENABLED
           
METADATA_KEY_TYPE
           
 
Method Summary
 String getValue()
          Gets the string value associated with the enum.
static DefaultMetadataKeys valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DefaultMetadataKeys[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADVERTISING_METADATA

public static final DefaultMetadataKeys ADVERTISING_METADATA

AUDITUDE_METADATA_KEY

public static final DefaultMetadataKeys AUDITUDE_METADATA_KEY

JSON_METADATA_KEY

public static final DefaultMetadataKeys JSON_METADATA_KEY

CUSTOM_AD_MARKERS_METADATA_KEY

public static final DefaultMetadataKeys CUSTOM_AD_MARKERS_METADATA_KEY

METADATA_KEY_TYPE

public static final DefaultMetadataKeys METADATA_KEY_TYPE

METADATA_KEY_ADJUST_SEEK_ENABLED

public static final DefaultMetadataKeys METADATA_KEY_ADJUST_SEEK_ENABLED

CUSTOM_PARAMETERS

public static final DefaultMetadataKeys CUSTOM_PARAMETERS

MARKER_KEY

public static final DefaultMetadataKeys MARKER_KEY

MARKER_CONTENT_ID_KEY

public static final DefaultMetadataKeys MARKER_CONTENT_ID_KEY

MARKER_CONTENT_DURATION_KEY

public static final DefaultMetadataKeys MARKER_CONTENT_DURATION_KEY

AD_SIGNALING_MODE_KEY

public static final DefaultMetadataKeys AD_SIGNALING_MODE_KEY

DISABLE_CONTENT_CACHING

public static final DefaultMetadataKeys DISABLE_CONTENT_CACHING
Method Detail

values

public static DefaultMetadataKeys[] 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 (DefaultMetadataKeys c : DefaultMetadataKeys.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DefaultMetadataKeys 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 name
NullPointerException - if the argument is null

getValue

public String getValue()
Gets the string value associated with the enum.

Returns:
the string value associated with the enum.