public static enum FastNoiseLite.NoiseType extends Enum<FastNoiseLite.NoiseType>
Enum Constant and Description |
---|
Cellular |
OpenSimplex2 |
OpenSimplex2S |
Perlin |
Value |
ValueCubic |
Modifier and Type | Method and Description |
---|---|
static FastNoiseLite.NoiseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FastNoiseLite.NoiseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FastNoiseLite.NoiseType OpenSimplex2
public static final FastNoiseLite.NoiseType OpenSimplex2S
public static final FastNoiseLite.NoiseType Cellular
public static final FastNoiseLite.NoiseType Perlin
public static final FastNoiseLite.NoiseType ValueCubic
public static final FastNoiseLite.NoiseType Value
public static FastNoiseLite.NoiseType[] values()
for (FastNoiseLite.NoiseType c : FastNoiseLite.NoiseType.values()) System.out.println(c);
public static FastNoiseLite.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.