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