Package org.jfree.ui
Class GradientPaintTransformType
- java.lang.Object
-
- org.jfree.ui.GradientPaintTransformType
-
- All Implemented Interfaces:
Serializable
public final class GradientPaintTransformType extends Object implements Serializable
Represents a type of transform for aGradientPaint
.- Author:
- David Gilbert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static GradientPaintTransformType
CENTER_HORIZONTAL
Center/horizontal.static GradientPaintTransformType
CENTER_VERTICAL
Center/vertical.static GradientPaintTransformType
HORIZONTAL
Horizontal.static GradientPaintTransformType
VERTICAL
Vertical.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.int
hashCode()
Returns a hash code value for the object.String
toString()
Returns a string representing the object.
-
-
-
Field Detail
-
VERTICAL
public static final GradientPaintTransformType VERTICAL
Vertical.
-
HORIZONTAL
public static final GradientPaintTransformType HORIZONTAL
Horizontal.
-
CENTER_VERTICAL
public static final GradientPaintTransformType CENTER_VERTICAL
Center/vertical.
-
CENTER_HORIZONTAL
public static final GradientPaintTransformType CENTER_HORIZONTAL
Center/horizontal.
-
-