Package org.jfree.chart.renderer.xy
Enum XYSplineRenderer.FillType
- java.lang.Object
-
- java.lang.Enum<XYSplineRenderer.FillType>
-
- org.jfree.chart.renderer.xy.XYSplineRenderer.FillType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<XYSplineRenderer.FillType>
- Enclosing class:
- XYSplineRenderer
public static enum XYSplineRenderer.FillType extends java.lang.Enum<XYSplineRenderer.FillType>
An enumeration of the fill types for the renderer.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
No fill.TO_LOWER_BOUND
Fill to lower bound.TO_UPPER_BOUND
Fill to upper bound.TO_ZERO
Fill towards zero.
-
Constructor Summary
Constructors Modifier Constructor Description private
FillType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XYSplineRenderer.FillType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static XYSplineRenderer.FillType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final XYSplineRenderer.FillType NONE
No fill.
-
TO_ZERO
public static final XYSplineRenderer.FillType TO_ZERO
Fill towards zero.
-
TO_LOWER_BOUND
public static final XYSplineRenderer.FillType TO_LOWER_BOUND
Fill to lower bound.
-
TO_UPPER_BOUND
public static final XYSplineRenderer.FillType TO_UPPER_BOUND
Fill to upper bound.
-
-
Method Detail
-
values
public static XYSplineRenderer.FillType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (XYSplineRenderer.FillType c : XYSplineRenderer.FillType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XYSplineRenderer.FillType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-