Record Class JmixKanbanSerializer.InternalKanbanTask
java.lang.Object
java.lang.Record
io.jmix.kanbanflowui.kit.serialization.JmixKanbanSerializer.InternalKanbanTask
- Enclosing class:
- JmixKanbanSerializer
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
InternalKanbanTaskprotected 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 the- idrecord component
- status- the value for the- statusrecord component
- text- the value for the- textrecord component
- userId- the value for the- userIdrecord component
- color- the value for the- colorrecord component
- dueDate- the value for the- dueDaterecord component
- progress- the value for the- progressrecord component
- tags- the value for the- tagsrecord component
- priority- the value for the- priorityrecord component
- swimlane- the value for the- swimlanerecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
statusReturns the value of thestatusrecord component.- Returns:
- the value of the statusrecord component
 
- 
textReturns the value of thetextrecord component.- Returns:
- the value of the textrecord component
 
- 
userIdReturns the value of theuserIdrecord component.- Returns:
- the value of the userIdrecord component
 
- 
colorReturns the value of thecolorrecord component.- Returns:
- the value of the colorrecord component
 
- 
dueDateReturns the value of thedueDaterecord component.- Returns:
- the value of the dueDaterecord component
 
- 
progressReturns the value of theprogressrecord component.- Returns:
- the value of the progressrecord component
 
- 
tagsReturns the value of thetagsrecord component.- Returns:
- the value of the tagsrecord component
 
- 
priorityReturns the value of thepriorityrecord component.- Returns:
- the value of the priorityrecord component
 
- 
swimlaneReturns the value of theswimlanerecord component.- Returns:
- the value of the swimlanerecord component
 
 
-