Package org.knowm.xchart
Enum PieSeries.PieSeriesRenderStyle
- java.lang.Object
-
- java.lang.Enum<PieSeries.PieSeriesRenderStyle>
-
- org.knowm.xchart.PieSeries.PieSeriesRenderStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<PieSeries.PieSeriesRenderStyle>
- Enclosing class:
- PieSeries
public static enum PieSeries.PieSeriesRenderStyle extends Enum<PieSeries.PieSeriesRenderStyle>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PieSeries.PieSeriesRenderStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static PieSeries.PieSeriesRenderStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Pie
public static final PieSeries.PieSeriesRenderStyle Pie
-
Donut
public static final PieSeries.PieSeriesRenderStyle Donut
-
-
Method Detail
-
values
public static PieSeries.PieSeriesRenderStyle[] 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 (PieSeries.PieSeriesRenderStyle c : PieSeries.PieSeriesRenderStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PieSeries.PieSeriesRenderStyle valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-