01: /*
02: * $RCSfile: DFTDataNature.java,v $
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * $Revision: 1.1 $
09: * $Date: 2005/02/11 04:57:33 $
10: * $State: Exp $
11: */
12: package javax.media.jai.operator;
13:
14: import javax.media.jai.EnumeratedParameter;
15:
16: /**
17: * Class used to represent the acceptable values of the "dataNature"
18: * parameter of the "DFT" and "IDFT" operations. Acceptable values for the
19: * "dataNature" parameter are defined in the <code>DFTDescriptor</code>
20: * and <code>IDFTDescriptor</code> by the constants
21: * <code>REAL_TO_COMPLEX</code>, <code>COMPLEX_TO_COMPLEX</code>, and
22: * <code>COMPLEX_TO_REAL</code>.
23: *
24: * @since JAI 1.1
25: */
26: public final class DFTDataNature extends EnumeratedParameter {
27: DFTDataNature(String name, int value) {
28: super(name, value);
29: }
30: }
|