public enum EssenceType extends Enum<EssenceType>
Specifies the kind of essence data in terms of its relationship with time.
| Enum Constant and Description |
|---|
Event
Data that is time-oriented but discontinuous or lumpy, such as descriptive
metadata.
|
Static
Data that is not time-oriented, for example a static image.
|
Timeline
Continuous data such as audio essence and video essence.
|
| Modifier and Type | Method and Description |
|---|---|
static EssenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EssenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EssenceType Timeline
Continuous data such as audio essence and video essence.
TimelineTrackpublic static final EssenceType Static
Data that is not time-oriented, for example a static image.
StaticTrackpublic static final EssenceType Event
Data that is time-oriented but discontinuous or lumpy, such as descriptive metadata.
EventTrackpublic static EssenceType[] values()
for (EssenceType c : EssenceType.values()) System.out.println(c);
public static EssenceType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null(c)2007-2016 Richard Cartwright, all rights reserved. Licensed under Apache 2 license and subject to the AMWA IPR policy.