public static enum GraphConstants.FormFactor extends java.lang.Enum<GraphConstants.FormFactor>
| Enum Constant and Description | 
|---|
AUTO  | 
SPARKCHART  | 
| Modifier and Type | Method and Description | 
|---|---|
static GraphConstants.FormFactor | 
convertStringToEnum(java.lang.String type)  | 
static GraphConstants.FormFactor | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static GraphConstants.FormFactor[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GraphConstants.FormFactor AUTO
public static final GraphConstants.FormFactor SPARKCHART
public static GraphConstants.FormFactor[] values()
for (GraphConstants.FormFactor c : GraphConstants.FormFactor.values()) System.out.println(c);
public static GraphConstants.FormFactor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static GraphConstants.FormFactor convertStringToEnum(java.lang.String type)