com.aspose.slides.pptx.animation
Enum ConstsEx.MotionCommandPathTypeEx

java.lang.Object
  extended by java.lang.Enum<ConstsEx.MotionCommandPathTypeEx>
      extended by com.aspose.slides.pptx.animation.ConstsEx.MotionCommandPathTypeEx
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ConstsEx.MotionCommandPathTypeEx>
Enclosing class:
ConstsEx

public static enum ConstsEx.MotionCommandPathTypeEx
extends java.lang.Enum<ConstsEx.MotionCommandPathTypeEx>

Represent types of command for animation motion effect behavior.


Enum Constant Summary
CloseLoop
           
CurveTo
           
End
           
LineTo
           
MoveTo
           
 
Method Summary
 int getId()
           
static ConstsEx.MotionCommandPathTypeEx valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConstsEx.MotionCommandPathTypeEx[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MoveTo

public static final ConstsEx.MotionCommandPathTypeEx MoveTo

LineTo

public static final ConstsEx.MotionCommandPathTypeEx LineTo

CurveTo

public static final ConstsEx.MotionCommandPathTypeEx CurveTo

CloseLoop

public static final ConstsEx.MotionCommandPathTypeEx CloseLoop

End

public static final ConstsEx.MotionCommandPathTypeEx End
Method Detail

values

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

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

valueOf

public static ConstsEx.MotionCommandPathTypeEx 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

getId

public int getId()