com.badlogic.gdx.graphics
Enum Pixmap.Blending

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

public static enum Pixmap.Blending
extends Enum<Pixmap.Blending>

Blending functions to be set with Pixmap.setBlending(com.badlogic.gdx.graphics.Pixmap.Blending).

Author:
mzechner

Enum Constant Summary
None
           
SourceOver
           
 
Method Summary
static Pixmap.Blending valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Pixmap.Blending[] 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 Pixmap.Blending None

SourceOver

public static final Pixmap.Blending SourceOver
Method Detail

values

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

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

valueOf

public static Pixmap.Blending 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 © 2013. All Rights Reserved.