public enum PackageKind extends Enum<PackageKind> implements MediaEnumerationValue
Specifies the kind of a package. This is used when searching for a package.
Package,
ContentStorage.countPackages(PackageKind)| Enum Constant and Description |
|---|
AllPackages
Matches any package.
|
CompositionPackage
Package is a composition package.
|
FilePackage
Package is a source package described by a
file descriptor.
|
FilmPackage
Package is a source package described by a
film descriptor.
|
MaterialPackage
Package is a material package.
|
PhysicalPackage
Package is a source package described by a
physical descriptor.
|
PrimaryPackage
TODO add a definition of primary package here
|
TapePackage
Package is a source package described by a
tape descriptor.
|
| Modifier and Type | Method and Description |
|---|---|
String |
symbol()
Provides a name for the enumeration value that can be used in XML serialisation.
|
long |
value()
Returns the unique integer value associated with an enumeration value, either according
to the AAF specification and/or the current AAF meta dictionary.
|
static PackageKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PackageKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final PackageKind CompositionPackage
Package is a composition package.
public static final PackageKind MaterialPackage
Package is a material package.
public static final PackageKind FilePackage
Package is a source package described by a file descriptor.
public static final PackageKind TapePackage
Package is a source package described by a tape descriptor.
public static final PackageKind FilmPackage
Package is a source package described by a film descriptor.
public static final PackageKind PrimaryPackage
Package is a material package and the primary package within its package.
public static final PackageKind AllPackages
Matches any package.
public static final PackageKind PhysicalPackage
Package is a source package described by a physical descriptor.
public static PackageKind[] values()
for (PackageKind c : PackageKind.values()) System.out.println(c);
public static PackageKind 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@Int64 public long value()
MediaEnumerationValueReturns the unique integer value associated with an enumeration value, either according to the AAF specification and/or the current AAF meta dictionary.
value in interface MediaEnumerationValueMediaEnumerationValue.value()public String symbol()
MediaEnumerationValueProvides a name for the enumeration value that can be used in XML serialisation. The name is unique within the namespace of the owning type.
As an example, the ChannelStatusModeType value ChannelStatusModeType.Fixed
value has the name "Fixed" and symbol "ChannelStatusMode_Fixed".
symbol in interface MediaEnumerationValue(c)2007-2016 Richard Cartwright, all rights reserved. Licensed under Apache 2 license and subject to the AMWA IPR policy.