Methods Summary |
---|
final boolean | equals(com.sun.jts.CosTransactions.LogRestartDescriptor other)Determines whether the target object is equal to the parameter.
return (restartValid == other.restartValid &&
restartDataLength == other.restartDataLength &&
timeStamp == other.timeStamp);
|
final int | toBytes(byte[] bytes, int index)Makes a byte representation of the LogRestartDescriptor.
bytes[index++] = (byte) restartValid;
bytes[index++] = (byte)(restartValid >> 8);
bytes[index++] = (byte)(restartValid >> 16);
bytes[index++] = (byte)(restartValid >> 24);
bytes[index++] = (byte) restartDataLength;
bytes[index++] = (byte)(restartDataLength >> 8);
bytes[index++] = (byte)(restartDataLength >> 16);
bytes[index++] = (byte)(restartDataLength >> 24);
bytes[index++] = (byte) timeStamp;
bytes[index++] = (byte)(timeStamp >> 8);
bytes[index++] = (byte)(timeStamp >> 16);
bytes[index++] = (byte)(timeStamp >> 24);
return SIZEOF;
|
public final java.lang.String | toString()This method is called to direct the object to format its state
to a String.
return "LRD(valid="/*#Frozen*/ + restartValid +
",len="/*#Frozen*/ + restartDataLength +
",time="/*#Frozen*/ + timeStamp + ")"/*#Frozen*/;
|