com.flagstone.transform.video
Enum VideoFormat

java.lang.Object
  extended by java.lang.Enum<VideoFormat>
      extended by com.flagstone.transform.video.VideoFormat
All Implemented Interfaces:
Serializable, Comparable<VideoFormat>

public enum VideoFormat
extends Enum<VideoFormat>

VideoFormat is used to identify the different encoding formats used for video in Flash and Flash Video files.


Enum Constant Summary
H263
          H263 is a low bit-rate compressed format originally developed for video-conferencing by the ITU-T Video Coding Experts Group (VCEG).
SCREEN
          Screen Video is a simple format used primarily for compressing sequences of screen shots where only the differences between successive frames are encoded.
VP6
          Truemotion VP6 developed by On2 (now Google).
VP6ALPHA
          Truemotion VP6 with transparency.
 
Method Summary
static VideoFormat valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VideoFormat[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

H263

public static final VideoFormat H263
H263 is a low bit-rate compressed format originally developed for video-conferencing by the ITU-T Video Coding Experts Group (VCEG).


SCREEN

public static final VideoFormat SCREEN
Screen Video is a simple format used primarily for compressing sequences of screen shots where only the differences between successive frames are encoded.


VP6

public static final VideoFormat VP6
Truemotion VP6 developed by On2 (now Google).


VP6ALPHA

public static final VideoFormat VP6ALPHA
Truemotion VP6 with transparency.

Method Detail

values

public static VideoFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (VideoFormat c : VideoFormat.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static VideoFormat valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2002-2010 Flagstone Software Ltd.. All Rights Reserved.