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