net.nexttext.renderer
Enum G3DTextPageRenderer.RendererType

java.lang.Object
  extended by java.lang.Enum<G3DTextPageRenderer.RendererType>
      extended by net.nexttext.renderer.G3DTextPageRenderer.RendererType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<G3DTextPageRenderer.RendererType>
Enclosing class:
G3DTextPageRenderer

public static enum G3DTextPageRenderer.RendererType
extends java.lang.Enum<G3DTextPageRenderer.RendererType>

Renderer type enumeration.

This is the type of the PApplet renderer, not the NextText renderer.


Enum Constant Summary
THREE_D
           
TWO_D
           
 
Method Summary
static G3DTextPageRenderer.RendererType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static G3DTextPageRenderer.RendererType[] 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

TWO_D

public static final G3DTextPageRenderer.RendererType TWO_D

THREE_D

public static final G3DTextPageRenderer.RendererType THREE_D
Method Detail

values

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

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

valueOf

public static G3DTextPageRenderer.RendererType 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