Package org.knowm.xchart.style
Enum PieStyler.ClockwiseDirectionType
- java.lang.Object
-
- java.lang.Enum<PieStyler.ClockwiseDirectionType>
-
- org.knowm.xchart.style.PieStyler.ClockwiseDirectionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PieStyler.ClockwiseDirectionType>
- Enclosing class:
- PieStyler
public static enum PieStyler.ClockwiseDirectionType extends java.lang.Enum<PieStyler.ClockwiseDirectionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOCKWISECOUNTER_CLOCKWISE
-
Constructor Summary
Constructors Modifier Constructor Description privateClockwiseDirectionType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PieStyler.ClockwiseDirectionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PieStyler.ClockwiseDirectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOCKWISE
public static final PieStyler.ClockwiseDirectionType CLOCKWISE
-
COUNTER_CLOCKWISE
public static final PieStyler.ClockwiseDirectionType COUNTER_CLOCKWISE
-
-
Method Detail
-
values
public static PieStyler.ClockwiseDirectionType[] 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 (PieStyler.ClockwiseDirectionType c : PieStyler.ClockwiseDirectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PieStyler.ClockwiseDirectionType 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
-
-