public class JobID extends ID implements Comparable<ID>
job_200707121733_0003
, which represents the third job
running at the jobtracker started at 200707121733
.
Applications should never construct or parse JobID strings, but rather
use appropriate constructors or forName(String)
method.
限定符和类型 | 字段和说明 |
---|---|
protected static NumberFormat |
idFormat |
protected static String |
JOB |
static String |
JOBID_REGEX |
限定符和类型 | 方法和说明 |
---|---|
StringBuilder |
appendTo(StringBuilder builder)
Add the stuff after the "job" prefix to the given builder.
|
int |
compareTo(ID o)
Compare JobIds by first jtIdentifiers, then by job numbers
|
boolean |
equals(Object o) |
static JobID |
forName(String str)
Construct a JobId object from given string
|
String |
getJtIdentifier() |
int |
hashCode() |
void |
readFields(DataInput in)
Deserialize the fields of this object from
in . |
String |
toString() |
void |
write(DataOutput out)
Serialize the fields of this object to
out . |
protected static final NumberFormat idFormat
public JobID(String jtIdentifier, int id)
jtIdentifier
- jobTracker identifierid
- job numberpublic JobID()
public String getJtIdentifier()
public int compareTo(ID o)
compareTo
在接口中 Comparable<ID>
compareTo
在类中 ID
public StringBuilder appendTo(StringBuilder builder)
builder
- the builder to append topublic void readFields(DataInput in) throws IOException
Writable
in
.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields
在接口中 Writable
readFields
在类中 ID
in
- DataInput
to deseriablize this object from.IOException
public void write(DataOutput out) throws IOException
Writable
out
.write
在接口中 Writable
write
在类中 ID
out
- DataOuput
to serialize this object into.IOException
public static JobID forName(String str) throws IllegalArgumentException
IllegalArgumentException
- if the given string is malformedCopyright © 2009 The Apache Software Foundation