Record Class ListValue<T extends Value<T>>

java.lang.Object
java.lang.Record
org.microbean.attributes.ListValue<T>
Type Parameters:
T - the type of the Values
Record Components:
value - a non-null List of Values
All Implemented Interfaces:
Comparable<ListValue<T>>, Constable, Value<ListValue<T>>

public record ListValue<T extends Value<T>>(List<T extends Value<T>> value) extends Record implements Value<ListValue<T>>
A Value holding other Values.
Author:
Laird Nelson
  • Constructor Details Link icon

  • Method Details Link icon

    • compareTo Link icon

      public final int compareTo(ListValue<T> other)
      Specified by:
      compareTo in interface Comparable<T extends Value<T>>
    • describeConstable Link icon

      Specified by:
      describeConstable in interface Constable
    • equals Link icon

      public final boolean equals(Object other)
      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:
      other - the object with which to compare
      Returns:
      true if this object is the same as the other argument; false otherwise.
    • hashCode Link icon

      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
    • toString Link icon

      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
    • of Link icon

      public static final <T extends Value<T>> ListValue<T> of(List<T> value)
      Returns a ListValue suitable for the supplied argument.
      Type Parameters:
      T - the type of Value held by the returned ListValue
      Parameters:
      value - a non-null List of suitably-typed Values
      Returns:
      a non-null ListValue
      Throws:
      NullPointerException - if value is null
    • value Link icon

      public List<T> value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component