Record Class JmixKanbanSerializer.InternalKanbanTask
java.lang.Object
java.lang.Record
io.jmix.kanbanflowui.kit.serialization.JmixKanbanSerializer.InternalKanbanTask
- Enclosing class:
- JmixKanbanSerializer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncolor()Returns the value of thecolorrecord component.dueDate()Returns the value of thedueDaterecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.priority()Returns the value of thepriorityrecord component.progress()Returns the value of theprogressrecord component.status()Returns the value of thestatusrecord component.swimlane()Returns the value of theswimlanerecord component.tags()Returns the value of thetagsrecord component.text()Returns the value of thetextrecord component.final StringtoString()Returns a string representation of this record class.userId()Returns the value of theuserIdrecord component.
-
Constructor Details
-
InternalKanbanTask
protected InternalKanbanTask(Object id, String status, String text, @Nullable String userId, @Nullable String color, @Nullable Object dueDate, @Nullable Number progress, @Nullable String tags, @Nullable String priority, @Nullable String swimlane) Creates an instance of aInternalKanbanTaskrecord class.- Parameters:
id- the value for theidrecord componentstatus- the value for thestatusrecord componenttext- the value for thetextrecord componentuserId- the value for theuserIdrecord componentcolor- the value for thecolorrecord componentdueDate- the value for thedueDaterecord componentprogress- the value for theprogressrecord componenttags- the value for thetagsrecord componentpriority- the value for thepriorityrecord componentswimlane- the value for theswimlanerecord 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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
status
Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-
text
Returns the value of thetextrecord component.- Returns:
- the value of the
textrecord component
-
userId
Returns the value of theuserIdrecord component.- Returns:
- the value of the
userIdrecord component
-
color
Returns the value of thecolorrecord component.- Returns:
- the value of the
colorrecord component
-
dueDate
Returns the value of thedueDaterecord component.- Returns:
- the value of the
dueDaterecord component
-
progress
Returns the value of theprogressrecord component.- Returns:
- the value of the
progressrecord component
-
tags
Returns the value of thetagsrecord component.- Returns:
- the value of the
tagsrecord component
-
priority
Returns the value of thepriorityrecord component.- Returns:
- the value of the
priorityrecord component
-
swimlane
Returns the value of theswimlanerecord component.- Returns:
- the value of the
swimlanerecord component
-