Class WrappedTask
- java.lang.Object
-
- net.florianschoppmann.issuetracking.asana.WrappedTask
-
- All Implemented Interfaces:
Comparable<WrappedTask>
public final class WrappedTask extends Object implements Comparable<WrappedTask>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(WrappedTask other)
boolean
equals(Object otherObject)
SortedSet<WrappedAttachment>
getAttachments()
SortedSet<WrappedComment>
getComments()
Instant
getCreatedAt()
LazyString
getMarkdownDescription()
int
getNumberInProject()
@Nullable WrappedTask
getSectionTitle()
com.asana.models.Task
getTask()
String
getTaskId()
int
hashCode()
-
-
-
Method Detail
-
compareTo
public int compareTo(WrappedTask other)
- Specified by:
compareTo
in interfaceComparable<WrappedTask>
-
getTaskId
public String getTaskId()
-
getCreatedAt
public Instant getCreatedAt()
-
getMarkdownDescription
public LazyString getMarkdownDescription()
-
getTask
public com.asana.models.Task getTask()
-
getSectionTitle
public @Nullable WrappedTask getSectionTitle()
-
getComments
public SortedSet<WrappedComment> getComments()
-
getAttachments
public SortedSet<WrappedAttachment> getAttachments()
-
getNumberInProject
public int getNumberInProject()
-
-