public enum SamplingMethod extends Enum<SamplingMethod>
| Enum Constant and Description |
|---|
DECIMATE
Zero order resampler
|
RESAMPLE
Two pass sinc resampler
|
| Modifier and Type | Method and Description |
|---|---|
static SamplingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamplingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplingMethod DECIMATE
public static final SamplingMethod RESAMPLE
public static SamplingMethod[] values()
for (SamplingMethod c : SamplingMethod.values()) System.out.println(c);
public static SamplingMethod 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 © 2018 Ken Händel. All rights reserved.