public final class AviHeaderFlags extends Object implements IEnumValue
Represents AVI Header flags.
Modifier and Type | Field and Description |
---|---|
static AviHeaderFlags |
Copyrighted
Indicates the AVI file contains copyrighted data and software.
|
static AviHeaderFlags |
HasIndex
Indicates the AVI file has an index.
|
static AviHeaderFlags |
IsInterleaved
Indicates the AVI file is interleaved.
|
static AviHeaderFlags |
MustUseIndex
Indicates that application should use the index, rather than the physical ordering of the chunks in the file,
to determine the order of presentation of the data.
|
static AviHeaderFlags |
TrustCkType
Use CKType to find key frames.
|
static AviHeaderFlags |
WasCaptureFile
Indicates the AVI file is a specially allocated file used for capturing real-time video.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
Object[] |
getAllValues()
Returns the array of all values defined in the class.
|
static AviHeaderFlags |
getByRawValue(int rawValue) |
IEnumValue |
getEnumValueByName(String name)
Returns the enumeration value by its name.
|
IEnumValue |
getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
|
static IEnumValue |
getFirst() |
int |
getRawValue()
Returns the raw value of this enumeration value.
|
RawIntegerType |
getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
|
int |
hashCode() |
String |
name()
Returns the name of this enumeration value.
|
public static final AviHeaderFlags HasIndex
Indicates the AVI file has an index.
public static final AviHeaderFlags MustUseIndex
Indicates that application should use the index, rather than the physical ordering of the chunks in the file, to determine the order of presentation of the data. For example, this flag could be used to create a list of frames for editing.
public static final AviHeaderFlags IsInterleaved
Indicates the AVI file is interleaved.
public static final AviHeaderFlags TrustCkType
Use CKType to find key frames.
public static final AviHeaderFlags WasCaptureFile
Indicates the AVI file is a specially allocated file used for capturing real-time video. Applications should warn the user before writing over a file with this flag set because the user probably defragmented this file.
public static final AviHeaderFlags Copyrighted
Indicates the AVI file contains copyrighted data and software. When this flag is used, software should not permit the data to be duplicated.
public static AviHeaderFlags getByRawValue(int rawValue)
public static IEnumValue getFirst()
public Object[] getAllValues()
IEnumValue
Returns the array of all values defined in the class.
getAllValues
in interface IEnumValue
public IEnumValue getEnumValueByRawValue(int rawValue)
IEnumValue
Returns the enumeration value by the raw value associated with it.
getEnumValueByRawValue
in interface IEnumValue
rawValue
- The raw value.public IEnumValue getEnumValueByName(String name)
IEnumValue
Returns the enumeration value by its name.
getEnumValueByName
in interface IEnumValue
name
- The name of the enumeration value.public RawIntegerType getRawValueType()
IEnumValue
Returns the underlying type of the raw value of this enumeration value.
getRawValueType
in interface IEnumValue
public int getRawValue()
IEnumValue
Returns the raw value of this enumeration value.
getRawValue
in interface IEnumValue
public String name()
IEnumValue
Returns the name of this enumeration value.
name
in interface IEnumValue