Record Class JmixKanbanSerializer.InternalKanbanTask
java.lang.Object
java.lang.Record
io.jmix.kanbanflowui.kit.serialization.JmixKanbanSerializer.InternalKanbanTask
- Enclosing class:
- JmixKanbanSerializer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncolor()
Returns the value of thecolor
record component.dueDate()
Returns the value of thedueDate
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.id()
Returns the value of theid
record component.priority()
Returns the value of thepriority
record component.progress()
Returns the value of theprogress
record component.status()
Returns the value of thestatus
record component.swimlane()
Returns the value of theswimlane
record component.tags()
Returns the value of thetags
record component.text()
Returns the value of thetext
record component.final String
toString()
Returns a string representation of this record class.userId()
Returns the value of theuserId
record 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 aInternalKanbanTask
record class.- Parameters:
id
- the value for theid
record componentstatus
- the value for thestatus
record componenttext
- the value for thetext
record componentuserId
- the value for theuserId
record componentcolor
- the value for thecolor
record componentdueDate
- the value for thedueDate
record componentprogress
- the value for theprogress
record componenttags
- the value for thetags
record componentpriority
- the value for thepriority
record componentswimlane
- the value for theswimlane
record 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 theid
record component.- Returns:
- the value of the
id
record component
-
status
Returns the value of thestatus
record component.- Returns:
- the value of the
status
record component
-
text
Returns the value of thetext
record component.- Returns:
- the value of the
text
record component
-
userId
Returns the value of theuserId
record component.- Returns:
- the value of the
userId
record component
-
color
Returns the value of thecolor
record component.- Returns:
- the value of the
color
record component
-
dueDate
Returns the value of thedueDate
record component.- Returns:
- the value of the
dueDate
record component
-
progress
Returns the value of theprogress
record component.- Returns:
- the value of the
progress
record component
-
tags
Returns the value of thetags
record component.- Returns:
- the value of the
tags
record component
-
priority
Returns the value of thepriority
record component.- Returns:
- the value of the
priority
record component
-
swimlane
Returns the value of theswimlane
record component.- Returns:
- the value of the
swimlane
record component
-