public enum NoiseQuality extends Enum<NoiseQuality>
| Enum Constant and Description |
|---|
BEST
Generates the best-quality coherent noise.
|
FAST
Generates coherent noise quickly.
|
STANDARD
Generates standard-quality coherent noise.
|
| Modifier and Type | Method and Description |
|---|---|
static NoiseQuality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoiseQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoiseQuality FAST
public static final NoiseQuality STANDARD
public static final NoiseQuality BEST
public static NoiseQuality[] values()
for (NoiseQuality c : NoiseQuality.values()) System.out.println(c);
public static NoiseQuality 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 © 2013–2017 Flow Powered. All rights reserved.