public static enum TimeCode.Packing extends Enum<TimeCode.Packing>
Enum Constant and Description |
---|
FILM24
Packing for 24-frame film
|
TV50
Packing for 50-field television
|
TV60
Packing for 60-field television
|
Modifier and Type | Method and Description |
---|---|
static TimeCode.Packing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeCode.Packing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeCode.Packing TV60
public static final TimeCode.Packing TV50
public static final TimeCode.Packing FILM24
public static TimeCode.Packing[] values()
for (TimeCode.Packing c : TimeCode.Packing.values()) System.out.println(c);
public static TimeCode.Packing 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