Record Class VisualOperand

java.lang.Object
java.lang.Record
net.amygdalum.allotropy.fluent.elements.VisualOperand
All Implemented Interfaces:
Precisable<VisualOperand>

public record VisualOperand(Precision precision, Bounds bounds) extends Record implements Precisable<VisualOperand>
  • Constructor Details

    • VisualOperand

      public VisualOperand(Precision precision, Bounds bounds)
      Creates an instance of a VisualOperand record class.
      Parameters:
      precision - the value for the precision record component
      bounds - the value for the bounds record component
  • Method Details

    • op

      public static VisualOperand op(VisualElement element)
    • withPrecision

      public VisualOperand withPrecision(Precision precision)
      Specified by:
      withPrecision in interface Precisable<VisualOperand>
    • nextTo

      public BoolWithExplanation nextTo(VisualOperand that)
    • stacked

      public BoolWithExplanation stacked(VisualOperand that)
    • around

      public boolean around(VisualOperand that)
    • inside

      public boolean inside(VisualOperand that)
    • outside

      public boolean outside(VisualOperand that)
    • overlapping

      public boolean overlapping(VisualOperand that)
    • topDistance

      public double topDistance(VisualOperand that)
    • rightDistance

      public double rightDistance(VisualOperand that)
    • bottomDistance

      public double bottomDistance(VisualOperand that)
    • leftDistance

      public double leftDistance(VisualOperand that)
    • topDistanceToBottom

      public double topDistanceToBottom(VisualOperand that)
    • rightDistanceToLeft

      public double rightDistanceToLeft(VisualOperand that)
    • bottomDistanceToTop

      public double bottomDistanceToTop(VisualOperand that)
    • leftDistanceToRight

      public double leftDistanceToRight(VisualOperand that)
    • at

      public double at(Alignment alignment)
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • precision

      public Precision precision()
      Returns the value of the precision record component.
      Returns:
      the value of the precision record component
    • bounds

      public Bounds bounds()
      Returns the value of the bounds record component.
      Returns:
      the value of the bounds record component