public enum RenderQuality extends java.lang.Enum<RenderQuality>
Low, Medium, and High settings equate to defaults that may change from version to version based on Partner's testing. If these are specified then the other switches and settings will be ignored.
Custom is a special case; when this is specified you must explicitly set the other switches and settings.
Copyright 2010 Partner Software, Inc.
| Modifier and Type | Method and Description |
|---|---|
static RenderQuality |
forName(java.lang.String name) |
java.lang.String |
getName() |
static RenderQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderQuality LOW
public static final RenderQuality MEDIUM
public static final RenderQuality HIGH
public static final RenderQuality CUSTOM
public static RenderQuality[] values()
for (RenderQuality c : RenderQuality.values()) System.out.println(c);
public static RenderQuality 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 nullpublic static RenderQuality forName(java.lang.String name)
public java.lang.String getName()