public enum VBIWrappingType extends Enum<VBIWrappingType>
VBI wrapping type enumeration, as per SMPTE-436M.
| Enum Constant and Description |
|---|
VBIField1
Field 1 of an interlaced picture.
|
VBIField2
Field 2 of an interlaced picture.
|
VBIFrame
Interlaced or PsF frame.
|
VBIProgressive
Progressive frame.
|
| Modifier and Type | Method and Description |
|---|---|
static VBIWrappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VBIWrappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VBIWrappingType VBIFrame
public static final VBIWrappingType VBIField1
public static final VBIWrappingType VBIField2
public static final VBIWrappingType VBIProgressive
public static VBIWrappingType[] values()
for (VBIWrappingType c : VBIWrappingType.values()) System.out.println(c);
public static VBIWrappingType 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.