Record Class TreeInputBuilder.Mapper
- Enclosing class:
TreeInputBuilder
public static record TreeInputBuilder.Mapper(String title, Object value, List<TreeInputBuilder.Mapper> children)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionMapper
(String title, Object value, List<TreeInputBuilder.Mapper> children) Creates an instance of aMapper
record class. -
Method Summary
Modifier and TypeMethodDescriptionchildren()
Returns the value of thechildren
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.title()
Returns the value of thetitle
record component.static List
<ContextParameter> toContextParameters
(Collection<?> collection) final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
Mapper
public Mapper(@Nullable String title, @Nullable Object value, @Nullable List<TreeInputBuilder.Mapper> children) Creates an instance of aMapper
record class.- Parameters:
title
- the value for thetitle
record componentvalue
- the value for thevalue
record componentchildren
- the value for thechildren
record component
-
-
Method Details
-
toContextParameters
-
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)
. -
title
Returns the value of thetitle
record component.- Returns:
- the value of the
title
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
children
Returns the value of thechildren
record component.- Returns:
- the value of the
children
record component
-