RFIDTagBase Class [AX 2012]
The RFIDTagBase class is the base class for generating and splitting radio frequency identification (RFID) tags. The class must be extended for each type of RFID tag.
Syntax
class RFIDTagBase
Run On
Called
Methods
Method | Description | |
---|---|---|
addBits | Adds a value to the bit stack. | |
cancelTimeOut | Cancels a previous method call to the setTimeOut method. (Inherited from Object.) | |
clear | Serves as the base method for clearing the tags and variables. The method must be extended for each type of radio frequency identification (RFID) tag. | |
equal | Determines whether the specified object is equal to the current one. (Inherited from Object.) | |
generate | Serves as the base method for generating the tags. The method must be extended for each type of type of radio frequency identification (RFID) tag. | |
getTimeOutTimerHandle | Returns the timer handle for the object. (Inherited from Object.) | |
handle | Retrieves the handle of the class of the object. (Inherited from Object.) | |
new | Initializes a new instance of the RFIDTagBase class. | |
notify | Releases the hold on an object that has called the wait method on this object. (Inherited from Object.) | |
notifyAll | Releases a lock on the object that was issued by the wait method on this object. (Inherited from Object.) | |
objectOnServer | Determines whether the object is on a server. (Inherited from Object.) | |
owner | Returns the instance that owns the object. (Inherited from Object.) | |
peek | Peeks a value from the bit stack and returns it as anytype. This makes it possible to assign it to both string and integers. | |
postGenerate | Finalizes the generation of the tag ID. | |
postGenerateValidation | The base method to validate the tag ID after it is generated. | |
postSplitValidation | The base method to validate the fields from the tag ID after it is split. | |
preGenerateValidation | The base method to validate the tag ID before it is generated. | |
preSplit | Converts the tag ID into the bit stack. | |
preSplitValidation | The base method to validate the tag ID before it is split. | |
push | Pushes a value on to the bit stack and returns the new bit stack. | |
setTimeOut | Sets up the scheduled execution of a specified method. (Inherited from Object.) | |
split | This method is the base method to split tags into separate fields. | |
tagLength | Retrieves the length of the tag ID. | |
toHex | Converts an integer into a hexadecimal string. | |
toString | Returns a string that represents the current object. (Inherited from Object.) | |
usageCount | Returns the current number of references, that is, the value of the reference counter, that the object has. (Inherited from Object.) | |
wait | Pauses a process. (Inherited from Object.) | |
xml | Returns an XML string that represents the current object. (Inherited from Object.) |
Top
Remarks
The RFID tag is received as a hexadecimal string from the RFID server and the hexadecimal values are pushed on to a binary stack in order to be able to split the different fields in the RFID tag even if the field is not sized to fit binary groups of four.
Inheritance Hierarchy
Object Class
RFIDTagBase Class
RFIDEpc Class