public enum FilmType extends Enum<FilmType> implements MediaEnumerationValue
Specifies the format of a film. The make "35MM" into a valid Java identifier,
all elements are all preceded by "Ft" to become "Ft35MM".
Original C name: aafFilmType_e
| Enum Constant and Description |
|---|
Ft16MM
16 millimetre film.
|
Ft35MM
35 millimetre film.
|
Ft65MM
65 millimetre film.
|
Ft8MM
8 millimetre film.
|
FtNull
Invalid film type.
|
| 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 FilmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilmType[] |
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 FilmType FtNull
Invalid film type.
public static final FilmType Ft35MM
35 millimetre film.
public static final FilmType Ft16MM
16 millimetre film.
public static final FilmType Ft8MM
8 millimetre film.
public static final FilmType Ft65MM
65 millimetre film.
public static FilmType[] values()
for (FilmType c : FilmType.values()) System.out.println(c);
public static FilmType 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 MediaEnumerationValuepublic 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.