Package io.keikai.api.model
Enum Chart.Grouping
- java.lang.Object
-
- java.lang.Enum<Chart.Grouping>
-
- io.keikai.api.model.Chart.Grouping
-
- All Implemented Interfaces:
Serializable
,Comparable<Chart.Grouping>
- Enclosing interface:
- Chart
public static enum Chart.Grouping extends Enum<Chart.Grouping>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLUSTERED
PERCENT_STACKED
STACKED
STANDARD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Chart.Grouping
valueOf(String name)
Returns the enum constant of this type with the specified name.static Chart.Grouping[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final Chart.Grouping STANDARD
-
STACKED
public static final Chart.Grouping STACKED
-
PERCENT_STACKED
public static final Chart.Grouping PERCENT_STACKED
-
CLUSTERED
public static final Chart.Grouping CLUSTERED
-
-
Method Detail
-
values
public static Chart.Grouping[] 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.Grouping c : Chart.Grouping.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.Grouping 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
-
-