public static enum FastNoise.NoiseType extends Enum<FastNoise.NoiseType>
Enum Constant and Description |
---|
Cellular |
Cubic |
CubicFractal |
Perlin |
PerlinFractal |
Simplex |
SimplexFractal |
Value |
ValueFractal |
WhiteNoise |
Modifier and Type | Method and Description |
---|---|
static FastNoise.NoiseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FastNoise.NoiseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FastNoise.NoiseType Value
public static final FastNoise.NoiseType ValueFractal
public static final FastNoise.NoiseType Perlin
public static final FastNoise.NoiseType PerlinFractal
public static final FastNoise.NoiseType Simplex
public static final FastNoise.NoiseType SimplexFractal
public static final FastNoise.NoiseType Cellular
public static final FastNoise.NoiseType WhiteNoise
public static final FastNoise.NoiseType Cubic
public static final FastNoise.NoiseType CubicFractal
public static FastNoise.NoiseType[] values()
for (FastNoise.NoiseType c : FastNoise.NoiseType.values()) System.out.println(c);
public static FastNoise.NoiseType 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 © 2020. All rights reserved.