public class

WorkerPersonalDataType

extends Object
java.lang.Object
   ↳ workday.com.bsvc.WorkerPersonalDataType

Class Overview

Encapsulating element containing all Worker Personal data.

Java class for Worker_Personal_DataType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Worker_Personal_DataType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Name_Data" type="{urn:com.workday/bsvc}Name_DataType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Contact_Data" type="{urn:com.workday/bsvc}Contact_DataType" minOccurs="0"/>
         <element name="Biographic_Data" type="{urn:com.workday/bsvc}Biographic_DataType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Demographic_Data" type="{urn:com.workday/bsvc}Demographic_DataType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected List<BiographicDataType> biographicData
protected ContactDataType contactData
protected List<DemographicDataType> demographicData
protected List<NameDataType> nameData
Public Constructors
WorkerPersonalDataType()
Public Methods
List<BiographicDataType> getBiographicData()
Gets the value of the biographicData property.
ContactDataType getContactData()
Gets the value of the contactData property.
List<DemographicDataType> getDemographicData()
Gets the value of the demographicData property.
List<NameDataType> getNameData()
Gets the value of the nameData property.
void setContactData(ContactDataType value)
Sets the value of the contactData property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected List<BiographicDataType> biographicData

protected ContactDataType contactData

protected List<DemographicDataType> demographicData

protected List<NameDataType> nameData

Public Constructors

public WorkerPersonalDataType ()

Public Methods

public List<BiographicDataType> getBiographicData ()

Gets the value of the biographicData property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the biographicData property.

For example, to add a new item, do as follows:

    getBiographicData().add(newItem);
 

Objects of the following type(s) are allowed in the list BiographicDataType

public ContactDataType getContactData ()

Gets the value of the contactData property.

Returns

public List<DemographicDataType> getDemographicData ()

Gets the value of the demographicData property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the demographicData property.

For example, to add a new item, do as follows:

    getDemographicData().add(newItem);
 

Objects of the following type(s) are allowed in the list DemographicDataType

public List<NameDataType> getNameData ()

Gets the value of the nameData property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the nameData property.

For example, to add a new item, do as follows:

    getNameData().add(newItem);
 

Objects of the following type(s) are allowed in the list NameDataType

public void setContactData (ContactDataType value)

Sets the value of the contactData property.

Parameters
value Allowed object is ContactDataType