de.jreality.writer.pdf
Enum WriterPDF.PDF3DLightingScene

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

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


Enum Constant Summary
BLUE
           
BRIGHT
           
CAD
           
CUBE
           
DAY
           
FILE
           
HEADLAMP
           
NIGHT
           
NONE
           
RED
           
RGB
           
WHITE
           
 
Method Summary
 String getName()
           
static WriterPDF.PDF3DLightingScene valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WriterPDF.PDF3DLightingScene[] 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

FILE

public static final WriterPDF.PDF3DLightingScene FILE

NONE

public static final WriterPDF.PDF3DLightingScene NONE

WHITE

public static final WriterPDF.PDF3DLightingScene WHITE

DAY

public static final WriterPDF.PDF3DLightingScene DAY

BRIGHT

public static final WriterPDF.PDF3DLightingScene BRIGHT

RGB

public static final WriterPDF.PDF3DLightingScene RGB

NIGHT

public static final WriterPDF.PDF3DLightingScene NIGHT

BLUE

public static final WriterPDF.PDF3DLightingScene BLUE

RED

public static final WriterPDF.PDF3DLightingScene RED

CUBE

public static final WriterPDF.PDF3DLightingScene CUBE

CAD

public static final WriterPDF.PDF3DLightingScene CAD

HEADLAMP

public static final WriterPDF.PDF3DLightingScene HEADLAMP
Method Detail

values

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

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

valueOf

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

getName

public String getName()