com.badlogic.gdx.graphics.g2d
Enum ParticleEmitter.SpawnShape

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

public static enum ParticleEmitter.SpawnShape
extends Enum<ParticleEmitter.SpawnShape>


Enum Constant Summary
ellipse
           
line
           
point
           
square
           
 
Method Summary
static ParticleEmitter.SpawnShape valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ParticleEmitter.SpawnShape[] 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

point

public static final ParticleEmitter.SpawnShape point

line

public static final ParticleEmitter.SpawnShape line

square

public static final ParticleEmitter.SpawnShape square

ellipse

public static final ParticleEmitter.SpawnShape ellipse
Method Detail

values

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

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

valueOf

public static ParticleEmitter.SpawnShape 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.