Package org.jfree.chart.renderer.xy
Enum XYBezierRenderer.FillType
- All Implemented Interfaces:
Serializable
,Comparable<XYBezierRenderer.FillType>
- Enclosing class:
XYBezierRenderer
An enumeration of the fill types for the renderer.
- Since:
- 1.0.17
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo fill.Fill to the lower bound.Fill to the upper bound.Fill down to zero. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic XYBezierRenderer.FillType
Returns the enum constant of this type with the specified name.static XYBezierRenderer.FillType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
No fill. -
TO_ZERO
Fill down to zero. -
TO_LOWER_BOUND
Fill to the lower bound. -
TO_UPPER_BOUND
Fill to the upper bound.
-
-
Constructor Details
-
FillType
private FillType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-