com.badlogic.gdx.graphics.g2d
Enum Animation.PlayMode

java.lang.Object
  extended by java.lang.Enum<Animation.PlayMode>
      extended by com.badlogic.gdx.graphics.g2d.Animation.PlayMode
All Implemented Interfaces:
Serializable, Comparable<Animation.PlayMode>
Enclosing class:
Animation

public static enum Animation.PlayMode
extends Enum<Animation.PlayMode>

Defines possible playback modes for an Animation.


Enum Constant Summary
LOOP
           
LOOP_PINGPONG
           
LOOP_RANDOM
           
LOOP_REVERSED
           
NORMAL
           
REVERSED
           
 
Method Summary
static Animation.PlayMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Animation.PlayMode[] 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

NORMAL

public static final Animation.PlayMode NORMAL

REVERSED

public static final Animation.PlayMode REVERSED

LOOP

public static final Animation.PlayMode LOOP

LOOP_REVERSED

public static final Animation.PlayMode LOOP_REVERSED

LOOP_PINGPONG

public static final Animation.PlayMode LOOP_PINGPONG

LOOP_RANDOM

public static final Animation.PlayMode LOOP_RANDOM
Method Detail

values

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

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

valueOf

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


Copyright © 2014. All Rights Reserved.