cz.cuni.jagrlib.piece
Enum ImageTransition.TransitionType

java.lang.Object
  extended by java.lang.Enum<ImageTransition.TransitionType>
      extended by cz.cuni.jagrlib.piece.ImageTransition.TransitionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ImageTransition.TransitionType>
Enclosing class:
ImageTransition

protected static enum ImageTransition.TransitionType
extends java.lang.Enum<ImageTransition.TransitionType>

Time transition type.


Enum Constant Summary
TR_CUTOFF
          Cutoff function (at 1/2).
TR_EXTERNAL
          External transition function.
TR_LINEAR
          Linear interpolation.
TR_SIGMA
          Goniometric sigma function.
 
Method Summary
static ImageTransition.TransitionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImageTransition.TransitionType[] 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

TR_EXTERNAL

public static final ImageTransition.TransitionType TR_EXTERNAL
External transition function.


TR_CUTOFF

public static final ImageTransition.TransitionType TR_CUTOFF
Cutoff function (at 1/2).


TR_LINEAR

public static final ImageTransition.TransitionType TR_LINEAR
Linear interpolation.


TR_SIGMA

public static final ImageTransition.TransitionType TR_SIGMA
Goniometric sigma function.

Method Detail

values

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

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

valueOf

public static ImageTransition.TransitionType 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