Package fr.rodofire.ewc.util
Enum Class FastNoiseLite.FractalType
- All Implemented Interfaces:
Serializable,Comparable<FastNoiseLite.FractalType>,Constable
- Enclosing class:
FastNoiseLite
Represents different types of fractal noise.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDomain-warping with independent effects.Domain-warping with progressive effects.Fractal Brownian Motion (FBm).No fractal effect applied.Ping-pong fractal noise.Ridged fractal noise. -
Method Summary
Modifier and TypeMethodDescriptionstatic FastNoiseLite.FractalTypeReturns the enum constant of this class with the specified name.static FastNoiseLite.FractalType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
No fractal effect applied. -
FBm
Fractal Brownian Motion (FBm). -
Ridged
Ridged fractal noise. -
PingPong
Ping-pong fractal noise. -
DomainWarpProgressive
Domain-warping with progressive effects. -
DomainWarpIndependent
Domain-warping with independent effects.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-