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