public enum DctNormalization extends Enum<DctNormalization>
FastCosineTransformer| Enum Constant and Description | 
|---|
| ORTHOGONAL_DCT_IShould be passed to the constructor of  FastCosineTransformerto use the orthogonal normalization convention. | 
| STANDARD_DCT_IShould be passed to the constructor of  FastCosineTransformerto use the standard normalization convention. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
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
 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 nameNullPointerException - if the argument is nullCopyright © 2003–2016 The Apache Software Foundation. All rights reserved.