public enum CategoryType extends java.lang.Enum<CategoryType>
| Enum Constant and Description |
|---|
AutomaticScale
Specifies the automatic scale.
|
CategoryScale
Specifies that the axis groups data by an arbitrary set of categories.
|
TimeScale
Specifies that the axis groups data on a time scale.
|
ValueScale
Specifies that the axis groups data on a value scale.
|
| Modifier and Type | Method and Description |
|---|---|
static CategoryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CategoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryType AutomaticScale
public static final CategoryType CategoryScale
public static final CategoryType TimeScale
public static final CategoryType ValueScale
public static CategoryType[] values()
for (CategoryType c : CategoryType.values()) System.out.println(c);
public static CategoryType 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 null