public static enum FourierTransform.FFTOptimization extends Enum<FourierTransform.FFTOptimization>
Modifier and Type | Method and Description |
---|---|
static FourierTransform.FFTOptimization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FourierTransform.FFTOptimization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FourierTransform.FFTOptimization SPEED
public static final FourierTransform.FFTOptimization MEMORY
public static FourierTransform.FFTOptimization[] values()
for (FourierTransform.FFTOptimization c : FourierTransform.FFTOptimization.values()) System.out.println(c);
public static FourierTransform.FFTOptimization 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 © 2015–2022 ImgLib2. All rights reserved.