|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<DctNormalization> org.apache.commons.math3.transform.DctNormalization
public enum DctNormalization
This enumeration defines the various types of normalizations that can be applied to discrete cosine transforms (DCT). The exact definition of these normalizations is detailed below.
FastCosineTransformer
Enum Constant Summary | |
---|---|
ORTHOGONAL_DCT_I
Should be passed to the constructor of FastCosineTransformer
to use the orthogonal normalization convention. |
|
STANDARD_DCT_I
Should be passed to the constructor of FastCosineTransformer
to use the standard normalization convention. |
Method Summary | |
---|---|
static DctNormalization |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DctNormalization[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DctNormalization STANDARD_DCT_I
FastCosineTransformer
to use the standard normalization convention. The standard
DCT-I normalization convention is defined as follows
public static final DctNormalization ORTHOGONAL_DCT_I
FastCosineTransformer
to use the orthogonal normalization convention. The orthogonal
DCT-I normalization convention is defined as follows
Method Detail |
---|
public static DctNormalization[] values()
for (DctNormalization c : DctNormalization.values()) System.out.println(c);
public static DctNormalization valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |