com.teamdev.jxcapture.video.win.directshow.encoding.wmv
Enum WmtVersion

java.lang.Object
  extended by java.lang.Enum<WmtVersion>
      extended by com.teamdev.jxcapture.video.win.directshow.encoding.wmv.WmtVersion
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WmtVersion>

public enum WmtVersion
extends java.lang.Enum<WmtVersion>


Enum Constant Summary
VER_4_0
           
VER_7_0
           
VER_9_0
           
 
Method Summary
 int getValue()
           
static WmtVersion getVersionFromNumber(int number)
           
static WmtVersion getVersionFromNumber(com.jniwrapper.IntegerParameter parameter)
           
static WmtVersion valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WmtVersion[] 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

VER_4_0

public static final WmtVersion VER_4_0

VER_7_0

public static final WmtVersion VER_7_0

VER_9_0

public static final WmtVersion VER_9_0
Method Detail

values

public static WmtVersion[] 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 (WmtVersion c : WmtVersion.values())
    System.out.println(c);

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

valueOf

public static WmtVersion valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()

getVersionFromNumber

public static WmtVersion getVersionFromNumber(com.jniwrapper.IntegerParameter parameter)

getVersionFromNumber

public static WmtVersion getVersionFromNumber(int number)