PSE 2000 Group 4

Uses of Class
jobmatch.data.HobbyDO

Packages that use HobbyDO
jobmatch.business.candidate.cv   
jobmatch.data   
 

Uses of HobbyDO in jobmatch.business.candidate.cv
 

Constructors in jobmatch.business.candidate.cv with parameters of type HobbyDO
Hobby.Hobby(HobbyDO dataObject)
           
 

Uses of HobbyDO in jobmatch.data
 

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

Methods in jobmatch.data that return HobbyDO
 HobbyDO HobbyBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
 HobbyDO[] HobbyQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 HobbyDO HobbyQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
static HobbyDO HobbyDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static HobbyDO HobbyDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a HobbyDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static HobbyDO HobbyDO.createExisting(String handle)
          The createExisting method is used to create a HobbyDO from a string handle.
protected static HobbyDO HobbyDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a HobbyDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static HobbyDO HobbyDO.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 HobbyDO HobbyDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a HobbyDO object by searching for it in the database using the HobbyDO.PrimaryKey value in the passed RDBRow.
protected static HobbyDO HobbyDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a HobbyDO object by searching for it in the database using the passed HobbyDO.PrimaryKey.
static HobbyDO HobbyDO.createCopy(HobbyDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static HobbyDO HobbyDO.createCopy(HobbyDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 

Methods in jobmatch.data with parameters of type HobbyDO
static HobbyBDO HobbyBDO.createExisting(HobbyDO DO)
          The createExisting method is used to create a HobbyBDO from a HobbyDO that was returned by the HobbyQuery class.
static HobbyDO HobbyDO.createCopy(HobbyDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void HobbyDO.makeIdentical(HobbyDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 

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


PSE 2000 Group 4