Package com.iizix

Class DSize

java.lang.Object
com.iizix.DSize
All Implemented Interfaces:
Serializable, Cloneable

public class DSize extends Object implements Cloneable, Serializable
A size with double's.
Author:
Christopher Mindus
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    The height.
    double
    The width.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs a size initialized to 0,0.
    DSize(double width, double height)
    Constructs and initializes position.
    Constructs and initializes position.
  • Method Summary

    Modifier and Type
    Method
    Description
    Clones this instance.
    static int
    Compares to sizes by first the width, then the height.
    boolean
    Check for equality.
    int
    Hash code.
    Creates the string representation of this position as className[width=NN,height=NN].

    Methods inherited from class java.lang.Object

    finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • width

      public double width
      The width.
    • height

      public double height
      The height.
  • Constructor Details

    • DSize

      public DSize()
      Constructs a size initialized to 0,0.
    • DSize

      public DSize(double width, double height)
      Constructs and initializes position.
      Parameters:
      width - The width.
      height - The height.
    • DSize

      public DSize(DSize s)
      Constructs and initializes position.
      Parameters:
      s - Another size.
  • Method Details

    • equals

      public boolean equals(Object o)
      Check for equality.
      Overrides:
      equals in class Object
      Parameters:
      o - Another size DSize, but Size and GSize are also supported.
      Returns:
      true if equal.
    • clone

      public DSize clone()
      Clones this instance.
      Overrides:
      clone in class Object
      Returns:
      As cloned instance of DSize.
    • hashCode

      public int hashCode()
      Hash code.
      Overrides:
      hashCode in class Object
      Returns:
      Returns the hash code. If the width and height equals to Integers, this hashCode will be the same as for {@link Size}.
    • toString

      public String toString()
      Creates the string representation of this position as className[width=NN,height=NN].
      Overrides:
      toString in class Object
    • compareWidthThenHeight

      public static int compareWidthThenHeight(DSize s1, DSize s2)
      Compares to sizes by first the width, then the height.
      Parameters:
      s1 - Size 1 (null allowed).
      s2 - Size 2 (null allowed).
      Returns:
      1 if s2 is wider then higher than s1 (or s2 is null), -1 if smaller (or s1 is null), 0 if equal (or both null).