Package pi.debug

Record Class ToStringFormatter.Field

java.lang.Object
java.lang.Record
pi.debug.ToStringFormatter.Field
Record Components:
name - Der Name des Feldes.
value - Der Wert des Feldes (String, Double, Color oder andere Typen)
unit - Die optionale Einheit des Feldes (kann null sein)
Enclosing class:
ToStringFormatter

public static record ToStringFormatter.Field(@NonNull String name, Object value, @Nullable String unit) extends Record
Repräsentiert ein Feld mit Name, Wert und optionaler Einheit für die formatierte Ausgabe.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Field(@NonNull String name, Object value, @Nullable String unit)
    Creates an instance of a Field record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Formatiert die Ausgabe mit dem Namen, dem formatierten Wert und optional der Einheit.
    final int
    Returns a hash code value for this object.
    @NonNull String
    Returns the value of the name record component.
    final String
    Returns a string representation of this record class.
    @Nullable String
    Returns the value of the unit record component.
    Returns the value of the value record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Field

      public Field(@NonNull String name, Object value, @Nullable String unit)
      Creates an instance of a Field record class.
      Parameters:
      name - the value for the name record component
      value - the value for the value record component
      unit - the value for the unit record component
  • Method Details

    • format

      public String format()
      Formatiert die Ausgabe mit dem Namen, dem formatierten Wert und optional der Einheit. Der Wert wird in blauer ANSI-Farbe dargestellt.
      Returns:
      die formatierte Zeichenkette im Format name=wert[einheit]
    • 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.
    • name

      public @NonNull String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • value

      public Object value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • unit

      public @Nullable String unit()
      Returns the value of the unit record component.
      Returns:
      the value of the unit record component