Methods Summary |
---|
public java.lang.Object | clone()Copies the current instance.
ZoneAdjustment retval = new ZoneAdjustment();
retval.sign = this.sign;
retval.offset = (TypedTime) this.offset.clone();
retval.time = this.time;
return retval;
|
public java.lang.String | encode()Encodes this structure into canonical form.
String retval = new Long(time).toString();
retval += Separators.SP;
if (sign != null) retval += sign;
retval += offset.encode();
return retval;
|
public TypedTime | getOffset()Gets the offset.
return offset;
|
public long | getTime()Gets the time.
return time;
|
public void | setOffset(TypedTime off)Sets the offset.
offset = off;
|
public void | setSign(java.lang.String s)Sets the sign.
sign = s;
|
public void | setTime(long t)Sets the time.
time = t;
|