public enum QualityMode extends Enum<QualityMode>
| Enum Constant and Description |
|---|
High
Hight quality.
|
Low
Low quality.
|
Normal
Normal quality.
|
| Modifier and Type | Method and Description |
|---|---|
static QualityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualityMode High
public static final QualityMode Normal
public static final QualityMode Low
public static QualityMode[] values()
for (QualityMode c : QualityMode.values()) System.out.println(c);
public static QualityMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2026. All rights reserved.