public enum PdfLightingScheme extends java.lang.Enum<PdfLightingScheme>
Enum Constant and Description |
---|
ARTWORK
Uses the lights defined in the scene
|
BLUE
Three blue infinite lights, no ambient term
|
CAD
Three grey infinite lights and one light attached to the camera, no ambient term
|
CUBE
Six grey infinite lights aligned with the major axes, no ambient term
|
DAY
Three light-grey infinite lights, no ambient term
|
HARD
Three grey infinite lights, moderate ambient term
|
HEADLAMP
Single infinite light attached to the camera, low ambient term
|
NIGHT
One yellow, one aqua, and one blue infinite light, no ambient term
|
NONE
No lights are used.
|
PRIMARY
One red, one green, and one blue infinite light, no ambient term
|
RED
Three red infinite lights, no ambient term
|
WHITE
Three blue-grey infinite lights, no ambient term
|
Modifier and Type | Method and Description |
---|---|
static PdfLightingScheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PdfLightingScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfLightingScheme ARTWORK
public static final PdfLightingScheme NONE
public static final PdfLightingScheme WHITE
public static final PdfLightingScheme DAY
public static final PdfLightingScheme NIGHT
public static final PdfLightingScheme HARD
public static final PdfLightingScheme PRIMARY
public static final PdfLightingScheme BLUE
public static final PdfLightingScheme RED
public static final PdfLightingScheme CUBE
public static final PdfLightingScheme CAD
public static final PdfLightingScheme HEADLAMP
public static PdfLightingScheme[] values()
for (PdfLightingScheme c : PdfLightingScheme.values()) System.out.println(c);
public static PdfLightingScheme valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null