| |
|
| java.lang.Object org.apache.derby.impl.drda.ConsistencyToken
ConsistencyToken | final class ConsistencyToken (Code) | | Class which represents an RDB Package Consistency Token.
|
Constructor Summary | |
| ConsistencyToken(byte[] bytes) Create a new ConsistencyToken instance. |
Method Summary | |
public boolean | equals(Object o) Check whether this object is equal to another object. | public byte[] | getBytes() Get the byte array representation of the consistency token. | public int | hashCode() Calculate the hash code. | public String | toString() Return a string representation of the consistency token by
converting it to a BigInteger value. |
ConsistencyToken | ConsistencyToken(byte[] bytes)(Code) | | Create a new ConsistencyToken instance.
Parameters: bytes - byte array representing the token |
equals | public boolean equals(Object o)(Code) | | Check whether this object is equal to another object.
Parameters: o - another object true if the objects are equal |
getBytes | public byte[] getBytes()(Code) | | Get the byte array representation of the consistency token.
a byte[] value |
hashCode | public int hashCode()(Code) | | Calculate the hash code.
hash code |
toString | public String toString()(Code) | | Return a string representation of the consistency token by
converting it to a BigInteger value. (For
debugging only.)
a String value |
|
|
|