Package su.onno.ui

Record Class ListSpec.Option

java.lang.Object
java.lang.Record
su.onno.ui.ListSpec.Option
Enclosing class:
ListSpec<E>

public static record ListSpec.Option(String value, String label, String avatarUrl) extends Record
One choice of a ListSpec.FilterType.OPTIONS/ListSpec.FilterType.MULTI_OPTIONS filter: the value matched against the field by the query, and the label the UI renders for it. When a filter is declared with the plain String... overloads the two are identical (the value is shown verbatim); the Map<String,String> overloads carry a value→label split so a filter over a code/English/enum-mirror column can show a localized choice. An optional avatarUrl lets a reference-backed filter reuse profile photos from its target catalog (for example, employee assignees).
  • Constructor Details

    • Option

      public Option(String value, String label, String avatarUrl)
      Creates an instance of a Option record class.
      Parameters:
      value - the value for the value record component
      label - the value for the label record component
      avatarUrl - the value for the avatarUrl record component
    • Option

      public Option(String value, String label)
  • Method Details

    • withAvatar

      public static ListSpec.Option withAvatar(String value, String label, String avatarUrl)
    • 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.
    • value

      public String value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • label

      public String label()
      Returns the value of the label record component.
      Returns:
      the value of the label record component
    • avatarUrl

      public String avatarUrl()
      Returns the value of the avatarUrl record component.
      Returns:
      the value of the avatarUrl record component