01: /*
02: * $RCSfile: ShearDir.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:44 $
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 "shearDir"
18: * parameter of the "Shear" operation. Acceptable values for the
19: * "shearDir" parameter are defined in the <code>ShearDescriptor</code>
20: * by the constants <code>SHEAR_HORIZONTAL</code> and
21: * <code>SHEAR_VERTICAL</code>.
22: *
23: * @since JAI 1.1
24: */
25: public final class ShearDir extends EnumeratedParameter {
26: ShearDir(String name, int value) {
27: super(name, value);
28: }
29: }
|