Package com.mayam.wf.config.shared
Enum Class EmbedContext
- All Implemented Interfaces:
Serializable
,Comparable<EmbedContext>
,Constable
Describes how the application is embedded within a parent application, such as a MAM or an NLE.
- Author:
- Markus MÃ¥rtensson
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionEmbedded into Adobe After Effects as an HTML5 extension.Embedded into Adobe Premiere Pro as an HTML5 extension.Embedded into Adobe Photoshop as an HTML5 extension.Full screen width, or nearly full screen if embedded.Half screen width; typically case: embedded within software having split-screen support. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Determine if a configuration entity, such as a field or action, should be visible given that the application is embedded as per this this context.static EmbedContext
Returns the enum constant of this class with the specified name.static EmbedContext[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FULL
Full screen width, or nearly full screen if embedded. -
HALF
Half screen width; typically case: embedded within software having split-screen support. -
ADOBE_AE
Embedded into Adobe After Effects as an HTML5 extension. -
ADOBE_PR
Embedded into Adobe Premiere Pro as an HTML5 extension. -
ADOBE_PS
Embedded into Adobe Photoshop as an HTML5 extension.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-