public enum AxisTransforms extends Enum<AxisTransforms> implements AxisTransform, Serializable
AxisTransforms.| Enum Constant and Description |
|---|
LOG
Natural logarithm.
|
SQRT
Square root.
|
| Modifier and Type | Method and Description |
|---|---|
double |
inverseTransform(double axisValue) |
boolean |
isVisible(double dataValue) |
double |
transform(double dataValue) |
static AxisTransforms |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisTransforms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisTransforms LOG
public static final AxisTransforms SQRT
public static AxisTransforms[] values()
for (AxisTransforms c : AxisTransforms.values()) System.out.println(c);
public static AxisTransforms 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 double transform(double dataValue)
transform in interface com.jfreechartextensions.axistransformations.BasicAxisTransformpublic double inverseTransform(double axisValue)
inverseTransform in interface com.jfreechartextensions.axistransformations.BasicAxisTransformpublic boolean isVisible(double dataValue)
isVisible in interface com.jfreechartextensions.axistransformations.BasicAxisTransform