public static enum PbChart.Type extends Enum<PbChart.Type>
| Enum Constant and Description |
|---|
BAR |
DOUGHNUT |
LINE |
PIE |
POLAR_AREA |
RADAR |
| Modifier and Type | Method and Description |
|---|---|
static PbChart.Type |
fromValue(String value) |
String |
toString() |
String |
value() |
static PbChart.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PbChart.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PbChart.Type DOUGHNUT
public static final PbChart.Type PIE
public static final PbChart.Type POLAR_AREA
public static final PbChart.Type BAR
public static final PbChart.Type LINE
public static final PbChart.Type RADAR
public static PbChart.Type[] values()
for (PbChart.Type c : PbChart.Type.values()) System.out.println(c);
public static PbChart.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<PbChart.Type>public String value()
public static PbChart.Type fromValue(String value)
Copyright © 2021. All rights reserved.