Class Bubble

  • All Implemented Interfaces:
    java.lang.Cloneable

    public final class Bubble
    extends GSeriesValue
    The bubble series value with X/Y and size values.
    Author:
    Christopher Mindus
    • Field Summary

      Fields 
      Modifier and TypeFieldDescription
      doublesize
      The size.
      doublex
      The X value.
      doubley
      The X value.
    • Constructor Summary

      Constructors 
      ConstructorDescription
      Bubble​(double x, double y, double size)
      Constructor for the bubble value point.
    • Field Detail

      • x

        public final double x
        The X value. An unspecified value is Double.NaN.
      • y

        public final double y
        The X value. An unspecified value is Double.NaN.
      • size

        public final double size
        The size. An unspecified value is Double.NaN.
    • Constructor Detail

      • Bubble

        public Bubble​(double x,
                      double y,
                      double size)
        Constructor for the bubble value point.
        Parameters:
        x - The X value, Double.NaN for no value.
        y - The Y value, Double.NaN for no value.
        size - The size, Double.NaN for no value.
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object o)
        Checks if two fill objects are equal.
        Specified by:
        equals in class GSeriesValue