User's Manual

CAENRFIDTag.MemBanks Enumeration
The CAENRFIDTag.MemBanks enumerates the bank name of a generic ISO18000-6C tag.
Syntax:
C# representation:
public enum MemBanks
{
RESERVED = 0,
EPC = 1,
TID = 2,
USER = 3
}
Java and Android representation:
public enum MemBanks {
RESERVED(0), EPC(1), TID(2), USER(3);
private int code;
private MemBanks(int c) {
code = c;
}
public int getBankNum() {
return code;
}
}
C representation:
typedef enum {
RESERVED = 0,
EPC = 1,
TID = 2,
USER = 3
} CAENRFIDMemBanks;
In the following table, the CAENRFIDTag.MemBanks Enumeration members are listed:
Member Description
RESERVED Indicates the reserved bank
EPC Indicates the EPC bank
TID Indicates the TID bank
USER Indicates the USER bank
CAEN RFID API – Reference Manual112