public class AIMFingerPrintInfo extends Object
Constructor and Description |
---|
AIMFingerPrintInfo()
Creates a new empty fingerprint.
|
AIMFingerPrintInfo(int clientId,
byte[] data)
Creates a new fingerprint.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Determines if two fingerprints are equal.
|
int |
getClientId()
Get the value of clientId.
|
byte[] |
getData()
Get the value of data.
|
static byte[] |
getFingerPrintData(int clientId)
Lookup fingerprint data by clientId.
|
static int |
getFingerPrintId(byte[] data)
Find the client id with the given by data.
|
int |
hashCode()
Return the hash code of this fingerprint.
|
void |
setClientId(int clientId)
Set the value of clientId.
|
void |
setData(byte[] data)
Set the value of data.
|
public AIMFingerPrintInfo()
public AIMFingerPrintInfo(int clientId, byte[] data)
clientId
- the client IDdata
- the fingerprint datapublic int getClientId()
public void setClientId(int clientId)
clientId
- Value to assign to clientId.public byte[] getData()
public void setData(byte[] data)
data
- Value to assign to data.public boolean equals(Object obj)
public int hashCode()
public static byte[] getFingerPrintData(int clientId)
clientId
- the client id to findAIMConstants
public static int getFingerPrintId(byte[] data)
data
- the data to testAIMConstants