PSE 2000 Group 4

Uses of Class
jobmatch.data.MatchQueueDO

Packages that use MatchQueueDO
jobmatch.data   
 

Uses of MatchQueueDO in jobmatch.data
 

Fields in jobmatch.data declared as MatchQueueDO
protected  MatchQueueDO MatchQueueBDO.DO
          The MatchQueueDO object upon which the set and get methods operate.
 

Methods in jobmatch.data that return MatchQueueDO
 MatchQueueDO[] CandidateBDO.getMatchQueueDOArray()
          Get array of MatchQueueDO objects that refer to the DO held by this BDO.
 MatchQueueDO CandidateBDO.getMatchQueueDO()
          Get the single MatchQueueDO object that refers to the DO held by this BDO.
 MatchQueueDO[] MatchQueueQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 MatchQueueDO MatchQueueQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
static MatchQueueDO MatchQueueDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static MatchQueueDO MatchQueueDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a MatchQueueDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static MatchQueueDO MatchQueueDO.createExisting(String handle)
          The createExisting method is used to create a MatchQueueDO from a string handle.
protected static MatchQueueDO MatchQueueDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a MatchQueueDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static MatchQueueDO MatchQueueDO.createExisting(ResultSet rs)
          createExisting( ResultSet ) Factory method used to create an instance of this class to represent a Data Object already existing in the database.
protected static MatchQueueDO MatchQueueDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a MatchQueueDO object by searching for it in the database using the MatchQueueDO.PrimaryKey value in the passed RDBRow.
protected static MatchQueueDO MatchQueueDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a MatchQueueDO object by searching for it in the database using the passed MatchQueueDO.PrimaryKey.
static MatchQueueDO MatchQueueDO.createCopy(MatchQueueDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static MatchQueueDO MatchQueueDO.createCopy(MatchQueueDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 MatchQueueDO MatchQueueBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
 MatchQueueDO[] CandidateDO.getMatchQueueDOArray()
          Get array of MatchQueueDO objects that refer to this DO.
 MatchQueueDO CandidateDO.getMatchQueueDO()
          Get the single MatchQueueDO object that refers to this DO.
 

Methods in jobmatch.data with parameters of type MatchQueueDO
static MatchQueueDO MatchQueueDO.createCopy(MatchQueueDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void MatchQueueDO.makeIdentical(MatchQueueDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
static MatchQueueBDO MatchQueueBDO.createExisting(MatchQueueDO DO)
          The createExisting method is used to create a MatchQueueBDO from a MatchQueueDO that was returned by the MatchQueueQuery class.
 void CandidateDO.addMatchQueueDO(MatchQueueDO referrer)
          Add (set & commit) a MatchQueueDO object that refers to this DO.
 void CandidateDO.addMatchQueueDO(MatchQueueDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a MatchQueueDO object that refers to this DO.
 void CandidateDO.removeMatchQueueDO(MatchQueueDO referrer)
          Remove (delete) a MatchQueueDO object that refers to this DO.
 void CandidateDO.removeMatchQueueDO(MatchQueueDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a MatchQueueDO object that refers to this DO.
 

Constructors in jobmatch.data with parameters of type MatchQueueDO
MatchQueueBDO.MatchQueueBDO(MatchQueueDO DO)
          Constructor for use by classes derived from MatchQueueBDO.
 


PSE 2000 Group 4