de.esw.eengine.core
Enum Core.RenderPipeline

java.lang.Object
  extended by java.lang.Enum<Core.RenderPipeline>
      extended by de.esw.eengine.core.Core.RenderPipeline
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Core.RenderPipeline>
Enclosing class:
Core

public static enum Core.RenderPipeline
extends java.lang.Enum<Core.RenderPipeline>

Since:
1.0
Version:
$Id: Core.java 209 2005-07-23 00:39:50Z markusw $
Author:
markusw

Enum Constant Summary
DIRECT3D
          Comment for DIRECT3D
OPENGL
          Comment for OPENGL
 
Method Summary
static Core.RenderPipeline valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Core.RenderPipeline[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

OPENGL

public static final Core.RenderPipeline OPENGL
Comment for OPENGL


DIRECT3D

public static final Core.RenderPipeline DIRECT3D
Comment for DIRECT3D

Method Detail

values

public static final Core.RenderPipeline[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Core.RenderPipeline c : Core.RenderPipeline.values())
        System.out.println(c);

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

valueOf

public static Core.RenderPipeline 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