Uses of Class
com.alien.enterpriseRFID.tags.Tag

Packages that use Tag
com.alien.enterpriseRFID.notify The notify classes work in conjunction with a reader running in autonomous mode. 
com.alien.enterpriseRFID.reader The Reader classes are the primary classes for communicating with a reader either over the network or serial port. 
com.alien.enterpriseRFID.tags Tags play a very important part in the RFID reader and tag system. 
 

Uses of Tag in com.alien.enterpriseRFID.notify
 

Methods in com.alien.enterpriseRFID.notify that return Tag
 Tag[] Message.getTagList()
          Returns the TagList of this notification message, as an array of Tags.
 Tag Message.getTag(int index)
          Returns the Tag that holds position index in this Message's TagList.
 

Methods in com.alien.enterpriseRFID.notify with parameters of type Tag
 void Message.setTagList(Tag[] tagList)
          Sets the TagList of this Message as an array of Tags.
 

Uses of Tag in com.alien.enterpriseRFID.reader
 

Methods in com.alien.enterpriseRFID.reader that return Tag
 Tag[] AlienClassOEMReader.getTagList()
          Returns an array of tags known to the reader, once.
 Tag[] AlienClassOEMReader.getTagList(int multiplier)
          Fetches and returns the tag list, using a multiplier count.
 Tag AlienClassOEMReader.getTag()
          Acquires one Tag, once.
 Tag AlienClassOEMReader.getTag(int multiplier)
          Acquires one Tag, using a multiplier.
 Tag[] AlienClassOEMReader.doInventory()
          Performs an Inventory.
 Tag AlienClassBPTReader.getTagID(java.lang.String tagID)
          Returns the ID of a unique tag specified by the mask commands.
 Tag[] AlienClass1Reader.getTagList(int multiplier)
          Immediately scans the field for tags a specified number of times and reports the results.
 Tag[] AlienClass1Reader.getTagList()
          Immediately scans the field for tags once and reports the results.
 Tag[] AlienClass1Reader.getCustomTagList(int multiplier)
          Immediately scans the field for tags a specified number of times and reports the results.
 Tag[] AlienClass1Reader.getCustomTagList()
          Immediately scans the field for tags once and reports the results.
 Tag AlienClass1Reader.getTag(int multiplier)
          Immediately scans the field for tags a specified number of times and reports the first tag.
 Tag AlienClass1Reader.getTag()
          Immediately scans the field for tags once and reports the results the first tag.
 Tag[] AlienClass01Reader.getTagList()
          Returns an array of tags known to the reader, once.
 Tag[] AlienClass01Reader.getTagList(int multiplier)
          Fetches and returns the tag list, using a multiplier count.
 Tag[] AlienClass01Reader.getTagList(long readMillis)
          Reads tags for the specified number of milliseconds.
 Tag AlienClass01Reader.getTag()
          Acquires one Tag, once.
 Tag AlienClass01Reader.getTag(int multiplier)
          Acquires one Tag, using a multiplier.
 

Uses of Tag in com.alien.enterpriseRFID.tags
 

Methods in com.alien.enterpriseRFID.tags that return Tag
static Tag[] TagUtil.decodeXMLTagList(java.lang.String xmlData)
          Decodes an XML-based tag list message from a reader into an array of Tags.
static Tag TagUtil.decodeXMLTag(java.lang.String xmlData)
          Decode an individual tag's information from an XML-based tag message.
static Tag[] TagUtil.decodeTagList(java.lang.String tagLines)
          Decodes a text-based tag list message from a reader into an array of Tags.
static Tag TagUtil.decodeTag(java.lang.String tagLine)
          Decode a single text-based line of tag list data into a single Tag item.
static Tag[] TagUtil.decodeCustomTagList(java.lang.String tagLines, java.lang.String customFormatString)
          Decodes a custom-formatted tag list message from a reader into an array of Tags.
static Tag[] TagUtil.decodeCustomTagList(java.lang.String tagLines)
           
static Tag TagUtil.decodeCustomTag(java.lang.String tagLine)
           
 Tag[] TagTable.getTagList()
          Returns the list of tags in this TagTable, as an array of Tag objects.
 

Methods in com.alien.enterpriseRFID.tags with parameters of type Tag
static java.lang.String TagUtil.taglistAsString(Tag[] taglist)
          Returns a string representation of an entire taglist, Tag[].
 void TagTableListener.tagAdded(Tag tag)
          Called by a TagTable when a new tag has been added to its tag list.
 void TagTableListener.tagRenewed(Tag tag)
          Called by a TagTable when a tag has been added to its tag list, and a similar tag already existed.
 void TagTableListener.tagRemoved(Tag tag)
          Called by a TagTable when a tag has expired from its tag list, due to inactivity.
 boolean TagTable.addTag(Tag tag)
          Adds a Tag to this TagTable.
 boolean TagTable.removeTag(Tag tag)
          Removes a Tag from this TagTable.
 void Tag.updateTag(Tag newTag)
          Updates this Tag with the data from newTag.