Package su.onno.ui
Record Class ResolvedListView.Option
java.lang.Object
java.lang.Record
su.onno.ui.ResolvedListView.Option
- Enclosing class:
ResolvedListView
public static record ResolvedListView.Option(String value, String label, String color, String avatarUrl)
extends Record
One choice of a (multi-)options filter: the
value the query matches against the column,
and the label the control renders. The two are identical for a plain-string filter; a
value→label split lets a filter over a code/English/enum-mirror column show a localized choice.
color (blank when none) carries an @EnumLabel(color=…) hex so the control can
tint the choice like the entity's status pills; avatarUrl lets reference choices carry
target profile photos.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theavatarUrlrecord component.color()Returns the value of thecolorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.label()Returns the value of thelabelrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
Option
Creates an instance of aOptionrecord class.- Parameters:
value- the value for thevaluerecord componentlabel- the value for thelabelrecord componentcolor- the value for thecolorrecord componentavatarUrl- the value for theavatarUrlrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
label
Returns the value of thelabelrecord component.- Returns:
- the value of the
labelrecord component
-
color
Returns the value of thecolorrecord component.- Returns:
- the value of the
colorrecord component
-
avatarUrl
Returns the value of theavatarUrlrecord component.- Returns:
- the value of the
avatarUrlrecord component
-