Enum AxisValue

java.lang.Object
java.lang.Enum<AxisValue>
eu.webtoolkit.jwt.chart.AxisValue
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AxisValue>, java.lang.constant.Constable

public enum AxisValue
extends java.lang.Enum<AxisValue>
Enumeration that indicates a logical location for an axis.

The location is dependent on the values of the other axis.

See Also:
WAxis.setLocation(AxisValue location)
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    BothSides
    At both sides (MinimumValue and MaximumValue).
    MaximumValue
    At the maximum value.
    MinimumValue
    At the minimum value.
    ZeroValue
    At the zero value (if displayed).
  • Method Summary

    Modifier and Type Method Description
    int getValue()
    Returns the numerical representation of this enum.
    static AxisValue valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static AxisValue[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • MinimumValue

      public static final AxisValue MinimumValue
      At the minimum value.
    • MaximumValue

      public static final AxisValue MaximumValue
      At the maximum value.
    • ZeroValue

      public static final AxisValue ZeroValue
      At the zero value (if displayed).
    • BothSides

      public static final AxisValue BothSides
      At both sides (MinimumValue and MaximumValue).
  • Method Details

    • values

      public static AxisValue[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AxisValue valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null
    • getValue

      public int getValue()
      Returns the numerical representation of this enum.