public class Job
extends java.lang.Object
implements java.io.Serializable
Representation of a job returned by the ListJobs operation.
| コンストラクタと説明 |
|---|
Job() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreationDate()
Timestamp of the CreateJob request in ISO8601 date format.
|
java.lang.Boolean |
getIsCanceled()
Indicates whether the job was canceled.
|
java.lang.String |
getJobId()
A unique identifier which refers to a particular job.
|
java.lang.String |
getJobType()
Specifies whether the job to initiate is an import or export job.
|
int |
hashCode() |
java.lang.Boolean |
isCanceled()
Indicates whether the job was canceled.
|
void |
setCreationDate(java.util.Date creationDate)
Timestamp of the CreateJob request in ISO8601 date format.
|
void |
setIsCanceled(java.lang.Boolean isCanceled)
Indicates whether the job was canceled.
|
void |
setJobId(java.lang.String jobId)
A unique identifier which refers to a particular job.
|
void |
setJobType(JobType jobType)
Specifies whether the job to initiate is an import or export job.
|
void |
setJobType(java.lang.String jobType)
Specifies whether the job to initiate is an import or export job.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Job |
withCreationDate(java.util.Date creationDate)
Timestamp of the CreateJob request in ISO8601 date format.
|
Job |
withIsCanceled(java.lang.Boolean isCanceled)
Indicates whether the job was canceled.
|
Job |
withJobId(java.lang.String jobId)
A unique identifier which refers to a particular job.
|
Job |
withJobType(JobType jobType)
Specifies whether the job to initiate is an import or export job.
|
Job |
withJobType(java.lang.String jobType)
Specifies whether the job to initiate is an import or export job.
|
public java.lang.String getJobId()
public void setJobId(java.lang.String jobId)
jobId - A unique identifier which refers to a particular job.public Job withJobId(java.lang.String jobId)
Returns a reference to this object so that method calls can be chained together.
jobId - A unique identifier which refers to a particular job.public java.util.Date getCreationDate()
public void setCreationDate(java.util.Date creationDate)
creationDate - Timestamp of the CreateJob request in ISO8601 date format. For example
"2010-03-28T20:27:35Z".public Job withCreationDate(java.util.Date creationDate)
Returns a reference to this object so that method calls can be chained together.
creationDate - Timestamp of the CreateJob request in ISO8601 date format. For example
"2010-03-28T20:27:35Z".public java.lang.Boolean isCanceled()
public void setIsCanceled(java.lang.Boolean isCanceled)
isCanceled - Indicates whether the job was canceled.public Job withIsCanceled(java.lang.Boolean isCanceled)
Returns a reference to this object so that method calls can be chained together.
isCanceled - Indicates whether the job was canceled.public java.lang.Boolean getIsCanceled()
public java.lang.String getJobType()
Constraints:
Allowed Values: Import, Export
JobTypepublic void setJobType(java.lang.String jobType)
Constraints:
Allowed Values: Import, Export
jobType - Specifies whether the job to initiate is an import or export job.JobTypepublic Job withJobType(java.lang.String jobType)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: Import, Export
jobType - Specifies whether the job to initiate is an import or export job.JobTypepublic void setJobType(JobType jobType)
Constraints:
Allowed Values: Import, Export
jobType - Specifies whether the job to initiate is an import or export job.JobTypepublic Job withJobType(JobType jobType)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: Import, Export
jobType - Specifies whether the job to initiate is an import or export job.JobTypepublic 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