de.jreality.writer.pdf
Enum WriterPDF.PDF3DRenderMode

java.lang.Object
  extended by java.lang.Enum<WriterPDF.PDF3DRenderMode>
      extended by de.jreality.writer.pdf.WriterPDF.PDF3DRenderMode
All Implemented Interfaces:
Serializable, Comparable<WriterPDF.PDF3DRenderMode>
Enclosing class:
WriterPDF

public static enum WriterPDF.PDF3DRenderMode
extends Enum<WriterPDF.PDF3DRenderMode>


Enum Constant Summary
BOUNDING_BOX
           
DEFAULT
           
HIDDEN_WIREFRAME
           
ILLUSTRATION
           
SHADED_ILLUSTRATION
           
SHADED_SOLID_WIREFRAME
           
SHADED_VERTICES
           
SHADED_WIREFRAME
           
SOLID
           
SOLID_OUTLINE
           
TRANSPARENT
           
TRANSPARENT_BOUNDING_BOX
           
TRANSPARENT_BOUNDING_BOX_OUTLINE
           
TRANSPARENT_WIREFRAME
           
VERTICES
           
WIREFRAME
           
 
Method Summary
 String getName()
           
static WriterPDF.PDF3DRenderMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WriterPDF.PDF3DRenderMode[] 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

DEFAULT

public static final WriterPDF.PDF3DRenderMode DEFAULT

BOUNDING_BOX

public static final WriterPDF.PDF3DRenderMode BOUNDING_BOX

TRANSPARENT_BOUNDING_BOX

public static final WriterPDF.PDF3DRenderMode TRANSPARENT_BOUNDING_BOX

TRANSPARENT_BOUNDING_BOX_OUTLINE

public static final WriterPDF.PDF3DRenderMode TRANSPARENT_BOUNDING_BOX_OUTLINE

VERTICES

public static final WriterPDF.PDF3DRenderMode VERTICES

SHADED_VERTICES

public static final WriterPDF.PDF3DRenderMode SHADED_VERTICES

WIREFRAME

public static final WriterPDF.PDF3DRenderMode WIREFRAME

SHADED_WIREFRAME

public static final WriterPDF.PDF3DRenderMode SHADED_WIREFRAME

SOLID

public static final WriterPDF.PDF3DRenderMode SOLID

TRANSPARENT

public static final WriterPDF.PDF3DRenderMode TRANSPARENT

SHADED_SOLID_WIREFRAME

public static final WriterPDF.PDF3DRenderMode SHADED_SOLID_WIREFRAME

TRANSPARENT_WIREFRAME

public static final WriterPDF.PDF3DRenderMode TRANSPARENT_WIREFRAME

ILLUSTRATION

public static final WriterPDF.PDF3DRenderMode ILLUSTRATION

SOLID_OUTLINE

public static final WriterPDF.PDF3DRenderMode SOLID_OUTLINE

SHADED_ILLUSTRATION

public static final WriterPDF.PDF3DRenderMode SHADED_ILLUSTRATION

HIDDEN_WIREFRAME

public static final WriterPDF.PDF3DRenderMode HIDDEN_WIREFRAME
Method Detail

values

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

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

valueOf

public static WriterPDF.PDF3DRenderMode 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

getName

public String getName()