public class PendingTaskCount
extends java.lang.Object
implements java.io.Serializable
Contains the count of tasks in a task list.
| コンストラクタと説明 |
|---|
PendingTaskCount() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Integer |
getCount()
The number of tasks in the task list.
|
java.lang.Boolean |
getTruncated()
If set to true, indicates that the actual count was more than the
maximum supported by this API and the count returned is the truncated
value.
|
int |
hashCode() |
java.lang.Boolean |
isTruncated()
If set to true, indicates that the actual count was more than the
maximum supported by this API and the count returned is the truncated
value.
|
void |
setCount(java.lang.Integer count)
The number of tasks in the task list.
|
void |
setTruncated(java.lang.Boolean truncated)
If set to true, indicates that the actual count was more than the
maximum supported by this API and the count returned is the truncated
value.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
PendingTaskCount |
withCount(java.lang.Integer count)
The number of tasks in the task list.
|
PendingTaskCount |
withTruncated(java.lang.Boolean truncated)
If set to true, indicates that the actual count was more than the
maximum supported by this API and the count returned is the truncated
value.
|
public java.lang.Integer getCount()
Constraints:
Range: 0 -
public void setCount(java.lang.Integer count)
Constraints:
Range: 0 -
count - The number of tasks in the task list.public PendingTaskCount withCount(java.lang.Integer count)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
count - The number of tasks in the task list.public java.lang.Boolean isTruncated()
public void setTruncated(java.lang.Boolean truncated)
truncated - If set to true, indicates that the actual count was more than the
maximum supported by this API and the count returned is the truncated
value.public PendingTaskCount withTruncated(java.lang.Boolean truncated)
Returns a reference to this object so that method calls can be chained together.
truncated - If set to true, indicates that the actual count was more than the
maximum supported by this API and the count returned is the truncated
value.public java.lang.Boolean getTruncated()
public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object