Package su.onno.ui
Record Class ListSpec.Option
java.lang.Object
java.lang.Record
su.onno.ui.ListSpec.Option
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theavatarUrlrecord 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.static ListSpec.OptionwithAvatar(String value, String label, String avatarUrl)
-
Constructor Details
-
Option
Creates an instance of aOptionrecord class.- Parameters:
value- the value for thevaluerecord componentlabel- the value for thelabelrecord componentavatarUrl- the value for theavatarUrlrecord component
-
Option
-
-
Method Details
-
withAvatar
-
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
-
avatarUrl
Returns the value of theavatarUrlrecord component.- Returns:
- the value of the
avatarUrlrecord component
-