Class ChecklistImpl
java.lang.Object
pw.chew.clickup4j.internal.entities.ChecklistImpl
- All Implemented Interfaces:
Checklist
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface pw.chew.clickup4j.api.entities.Checklist
Checklist.Item -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns thisClickUp4jinstance.@NotNull OffsetDateTimeReturn when this checklist was created.longGets the ID of the user who created this checklist.@NotNull StringgetId()The checklist's ID.getItems()Returns the items in this checklist.@NotNull StringgetName()The checklist's name.intThe ordering of this checklist, if there are multiple.intThe amount of items that are marked as complete.@NotNull StringThe ID of the task this checklist belongs to.intThe amount of items that are marked as incomplete.
-
Constructor Details
-
ChecklistImpl
-
-
Method Details
-
getId
Description copied from interface:ChecklistThe checklist's ID. -
getTaskId
Description copied from interface:ChecklistThe ID of the task this checklist belongs to. -
getName
Description copied from interface:ChecklistThe checklist's name. -
getCreatedAt
Description copied from interface:ChecklistReturn when this checklist was created.- Specified by:
getCreatedAtin interfaceChecklist- Returns:
- When this checklist was created.
-
getOrderIndex
public int getOrderIndex()Description copied from interface:ChecklistThe ordering of this checklist, if there are multiple. This can be used as a sorting key.- Specified by:
getOrderIndexin interfaceChecklist- Returns:
- The order index of this checklist.
-
getCreatorId
public long getCreatorId()Description copied from interface:ChecklistGets the ID of the user who created this checklist.- Specified by:
getCreatorIdin interfaceChecklist- Returns:
- the user ID of the user who created this checklist.
-
getResolvedCount
public int getResolvedCount()Description copied from interface:ChecklistThe amount of items that are marked as complete.- Specified by:
getResolvedCountin interfaceChecklist- Returns:
- The amount of items that are marked as complete.
-
getUnresolvedCount
public int getUnresolvedCount()Description copied from interface:ChecklistThe amount of items that are marked as incomplete.- Specified by:
getUnresolvedCountin interfaceChecklist- Returns:
- The amount of items that are marked as incomplete.
-
getItems
Description copied from interface:ChecklistReturns the items in this checklist. -
getClickUp4j
Description copied from interface:ChecklistReturns thisClickUp4jinstance.- Specified by:
getClickUp4jin interfaceChecklist- Returns:
- This
ClickUp4jinstance.
-