java.io.Serializable
, java.lang.Comparable<AxisCrossBetween>
public enum AxisCrossBetween extends java.lang.Enum<AxisCrossBetween>
Enum Constant | Description |
---|---|
BETWEEN |
Specifies the value axis shall cross the category axis
between data markers.
|
MIDPOINT_CATEGORY |
Specifies the value axis shall cross the category axis at
the midpoint of a category.
|
Modifier and Type | Method | Description |
---|---|---|
static AxisCrossBetween |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AxisCrossBetween[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisCrossBetween BETWEEN
public static final AxisCrossBetween MIDPOINT_CATEGORY
public static AxisCrossBetween[] values()
for (AxisCrossBetween c : AxisCrossBetween.values()) System.out.println(c);
public static AxisCrossBetween 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 nullCopyright 2018 The Apache Software Foundation or its licensors, as applicable.