echopoint.google.chart
Enum BarChart.Orientation
java.lang.Object
java.lang.Enum<BarChart.Orientation>
echopoint.google.chart.BarChart.Orientation
- All Implemented Interfaces:
- Serializable, Comparable<BarChart.Orientation>
- Enclosing class:
- BarChart<N extends Number>
public static enum BarChart.Orientation
- extends Enum<BarChart.Orientation>
Enumeration for orientation types supported by bar charts.
bhs
public static final BarChart.Orientation bhs
bhg
public static final BarChart.Orientation bhg
bvs
public static final BarChart.Orientation bvs
bvg
public static final BarChart.Orientation bvg
values
public static BarChart.Orientation[] 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 (BarChart.Orientation c : BarChart.Orientation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static BarChart.Orientation 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 name
NullPointerException - if the argument is null