Package org.apache.batik.ext.awt.image
Class PadMode
- java.lang.Object
-
- org.apache.batik.ext.awt.image.PadMode
-
- All Implemented Interfaces:
java.io.Serializable
public final class PadMode extends java.lang.Object implements java.io.Serializable
This is a typesafe enumeration of the standard Composite rules for the CompositeRable operation. (over, in, out, atop, xor, arith)- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
MODE_REPLICATE
Pad edges by replicating edge pixelsstatic int
MODE_WRAP
Pad edges by wrapping around edge pixelsstatic int
MODE_ZERO_PAD
Pad edges with zerosstatic PadMode
REPLICATE
Pad edges by replicating edge pixelsstatic PadMode
WRAP
Pad edges by replicating edge pixelsstatic PadMode
ZERO_PAD
Pad edges with zeros
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMode()
Returns the mode of this pad mode.
-
-
-
Field Detail
-
MODE_ZERO_PAD
public static final int MODE_ZERO_PAD
Pad edges with zeros- See Also:
- Constant Field Values
-
MODE_REPLICATE
public static final int MODE_REPLICATE
Pad edges by replicating edge pixels- See Also:
- Constant Field Values
-
MODE_WRAP
public static final int MODE_WRAP
Pad edges by wrapping around edge pixels- See Also:
- Constant Field Values
-
ZERO_PAD
public static final PadMode ZERO_PAD
Pad edges with zeros
-
REPLICATE
public static final PadMode REPLICATE
Pad edges by replicating edge pixels
-
WRAP
public static final PadMode WRAP
Pad edges by replicating edge pixels
-
-