public enum ChartRangeType extends Enum<ChartRangeType>
| Enum Constant and Description |
|---|
Auto
Enumeration : Auto
|
Manual
Enumeration : Manual
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ChartRangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartRangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartRangeType Auto
public static final ChartRangeType Manual
public static ChartRangeType[] values()
for (ChartRangeType c : ChartRangeType.values()) System.out.println(c);
public static ChartRangeType 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<ChartRangeType>Copyright © 2015. All Rights Reserved.