Package io.keikai.api.model
Enum Chart.Type
- java.lang.Object
-
- java.lang.Enum<Chart.Type>
-
- io.keikai.api.model.Chart.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Chart.Type>
- Enclosing interface:
- Chart
public static enum Chart.Type extends Enum<Chart.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Chart.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static Chart.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AREA_3D
public static final Chart.Type AREA_3D
-
AREA
public static final Chart.Type AREA
-
BAR_3D
public static final Chart.Type BAR_3D
-
BAR
public static final Chart.Type BAR
-
BUBBLE
public static final Chart.Type BUBBLE
-
COLUMN
public static final Chart.Type COLUMN
-
COLUMN_3D
public static final Chart.Type COLUMN_3D
-
DOUGHNUT
public static final Chart.Type DOUGHNUT
-
LINE_3D
public static final Chart.Type LINE_3D
-
LINE
public static final Chart.Type LINE
-
OF_PIE
public static final Chart.Type OF_PIE
-
PIE_3D
public static final Chart.Type PIE_3D
-
PIE
public static final Chart.Type PIE
-
RADAR
public static final Chart.Type RADAR
-
SCATTER
public static final Chart.Type SCATTER
-
STOCK
public static final Chart.Type STOCK
-
SURFACE_3D
public static final Chart.Type SURFACE_3D
-
SURFACE
public static final Chart.Type SURFACE
-
-
Method Detail
-
values
public static Chart.Type[] 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 (Chart.Type c : Chart.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Chart.Type 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
-
-