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

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

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

Represents filter effect types.


Enum Constant Summary
Barn
           
Blinds
           
Box
           
Checkerboard
           
Circle
           
Diamond
           
Dissolve
           
Fade
           
Image
           
None
           
Pixelate
           
Plus
           
RandomBar
           
Slide
           
Stretch
           
Strips
           
Wedge
           
Wheel
           
Wipe
           
 
Method Summary
 int getId()
           
static ConstsEx.FilterEffectTypeEx valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConstsEx.FilterEffectTypeEx[] 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.FilterEffectTypeEx None

Barn

public static final ConstsEx.FilterEffectTypeEx Barn

Blinds

public static final ConstsEx.FilterEffectTypeEx Blinds

Box

public static final ConstsEx.FilterEffectTypeEx Box

Checkerboard

public static final ConstsEx.FilterEffectTypeEx Checkerboard

Circle

public static final ConstsEx.FilterEffectTypeEx Circle

Diamond

public static final ConstsEx.FilterEffectTypeEx Diamond

Dissolve

public static final ConstsEx.FilterEffectTypeEx Dissolve

Fade

public static final ConstsEx.FilterEffectTypeEx Fade

Image

public static final ConstsEx.FilterEffectTypeEx Image

Pixelate

public static final ConstsEx.FilterEffectTypeEx Pixelate

Plus

public static final ConstsEx.FilterEffectTypeEx Plus

RandomBar

public static final ConstsEx.FilterEffectTypeEx RandomBar

Slide

public static final ConstsEx.FilterEffectTypeEx Slide

Stretch

public static final ConstsEx.FilterEffectTypeEx Stretch

Strips

public static final ConstsEx.FilterEffectTypeEx Strips

Wedge

public static final ConstsEx.FilterEffectTypeEx Wedge

Wheel

public static final ConstsEx.FilterEffectTypeEx Wheel

Wipe

public static final ConstsEx.FilterEffectTypeEx Wipe
Method Detail

values

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