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

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

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

Represents subtypes of animation effect.


Enum Constant Summary
Across
           
Bottom
           
BottomLeft
           
BottomRight
           
Center
           
Clockwise
           
CounterClockwise
           
Down
           
DownLeft
           
DownRight
           
FontAllCaps
           
FontBold
           
FontItalic
           
FontShadow
           
FontStrikethrough
           
FontUnderline
           
Gradual
           
GradualAndCycleClockwise
           
GradualAndCycleCounterClockwise
           
Horizontal
           
HorizontalIn
           
HorizontalOut
           
In
           
InBottom
           
InCenter
           
InSlightly
           
Instant
           
Left
           
None
           
OrdinalMask
           
Out
           
OutBottom
           
OutCenter
           
OutSlightly
           
Right
           
Slightly
           
Top
           
TopLeft
           
TopRight
           
Up
           
UpLeft
           
UpRight
           
Vertical
           
VerticalIn
           
VerticalOut
           
Wheel1
           
Wheel2
           
Wheel3
           
Wheel4
           
Wheel8
           
 
Method Summary
 int getId()
           
static ConstsEx.EffectSubtypeEx valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConstsEx.EffectSubtypeEx[] 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

None

public static final ConstsEx.EffectSubtypeEx None

Across

public static final ConstsEx.EffectSubtypeEx Across

Bottom

public static final ConstsEx.EffectSubtypeEx Bottom

BottomLeft

public static final ConstsEx.EffectSubtypeEx BottomLeft

BottomRight

public static final ConstsEx.EffectSubtypeEx BottomRight

Center

public static final ConstsEx.EffectSubtypeEx Center

Clockwise

public static final ConstsEx.EffectSubtypeEx Clockwise

CounterClockwise

public static final ConstsEx.EffectSubtypeEx CounterClockwise

GradualAndCycleClockwise

public static final ConstsEx.EffectSubtypeEx GradualAndCycleClockwise

GradualAndCycleCounterClockwise

public static final ConstsEx.EffectSubtypeEx GradualAndCycleCounterClockwise

Down

public static final ConstsEx.EffectSubtypeEx Down

DownLeft

public static final ConstsEx.EffectSubtypeEx DownLeft

DownRight

public static final ConstsEx.EffectSubtypeEx DownRight

FontAllCaps

public static final ConstsEx.EffectSubtypeEx FontAllCaps

FontBold

public static final ConstsEx.EffectSubtypeEx FontBold

FontItalic

public static final ConstsEx.EffectSubtypeEx FontItalic

FontShadow

public static final ConstsEx.EffectSubtypeEx FontShadow

FontStrikethrough

public static final ConstsEx.EffectSubtypeEx FontStrikethrough

FontUnderline

public static final ConstsEx.EffectSubtypeEx FontUnderline

Gradual

public static final ConstsEx.EffectSubtypeEx Gradual

Horizontal

public static final ConstsEx.EffectSubtypeEx Horizontal

HorizontalIn

public static final ConstsEx.EffectSubtypeEx HorizontalIn

HorizontalOut

public static final ConstsEx.EffectSubtypeEx HorizontalOut

In

public static final ConstsEx.EffectSubtypeEx In

InBottom

public static final ConstsEx.EffectSubtypeEx InBottom

InCenter

public static final ConstsEx.EffectSubtypeEx InCenter

InSlightly

public static final ConstsEx.EffectSubtypeEx InSlightly

Instant

public static final ConstsEx.EffectSubtypeEx Instant

Left

public static final ConstsEx.EffectSubtypeEx Left

OrdinalMask

public static final ConstsEx.EffectSubtypeEx OrdinalMask

Out

public static final ConstsEx.EffectSubtypeEx Out

OutBottom

public static final ConstsEx.EffectSubtypeEx OutBottom

OutCenter

public static final ConstsEx.EffectSubtypeEx OutCenter

OutSlightly

public static final ConstsEx.EffectSubtypeEx OutSlightly

Right

public static final ConstsEx.EffectSubtypeEx Right

Slightly

public static final ConstsEx.EffectSubtypeEx Slightly

Top

public static final ConstsEx.EffectSubtypeEx Top

TopLeft

public static final ConstsEx.EffectSubtypeEx TopLeft

TopRight

public static final ConstsEx.EffectSubtypeEx TopRight

Up

public static final ConstsEx.EffectSubtypeEx Up

UpLeft

public static final ConstsEx.EffectSubtypeEx UpLeft

UpRight

public static final ConstsEx.EffectSubtypeEx UpRight

Vertical

public static final ConstsEx.EffectSubtypeEx Vertical

VerticalIn

public static final ConstsEx.EffectSubtypeEx VerticalIn

VerticalOut

public static final ConstsEx.EffectSubtypeEx VerticalOut

Wheel1

public static final ConstsEx.EffectSubtypeEx Wheel1

Wheel2

public static final ConstsEx.EffectSubtypeEx Wheel2

Wheel3

public static final ConstsEx.EffectSubtypeEx Wheel3

Wheel4

public static final ConstsEx.EffectSubtypeEx Wheel4

Wheel8

public static final ConstsEx.EffectSubtypeEx Wheel8
Method Detail

values

public static ConstsEx.EffectSubtypeEx[] 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.EffectSubtypeEx c : ConstsEx.EffectSubtypeEx.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.EffectSubtypeEx 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()