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