public static enum VisualQualityEvent.Mode extends java.lang.Enum<VisualQualityEvent.Mode>
Enum Constant and Description |
---|
AUTO
Mode will be AUTO if the auto quality level is enabled.
|
MANUAL
Mode will be MANUAL if a static quality is set.
|
Modifier and Type | Method and Description |
---|---|
static VisualQualityEvent.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VisualQualityEvent.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisualQualityEvent.Mode AUTO
public static final VisualQualityEvent.Mode MANUAL
public static VisualQualityEvent.Mode[] values()
for (VisualQualityEvent.Mode c : VisualQualityEvent.Mode.values()) System.out.println(c);
public static VisualQualityEvent.Mode 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