public class

LocalNameDataType

extends Object
implements Serializable
java.lang.Object
   ↳ com.workday.recruiting.LocalNameDataType

Class Overview

Contains the components of a name in local script, such as the First Name and Last Name, for supporting countries.

Java class for Local_Name_DataType complex type.

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

 <complexType name="Local_Name_DataType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="First_Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Middle_Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Last_Name" type="{urn:com.workday/bsvc}Local_Last_Name_DataType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="Local_Name" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="Local_Script" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Constants
long serialVersionUID
Fields
protected String firstName
protected List<LocalLastNameDataType> lastName
protected String localName
protected String localScript
protected String middleName
Public Constructors
LocalNameDataType()
Public Methods
String getFirstName()
Gets the value of the firstName property.
List<LocalLastNameDataType> getLastName()
Gets the value of the lastName property.
String getLocalName()
Gets the value of the localName property.
String getLocalScript()
Gets the value of the localScript property.
String getMiddleName()
Gets the value of the middleName property.
void setFirstName(String value)
Sets the value of the firstName property.
void setLastName(List<LocalLastNameDataType> lastName)
Sets the value of the lastName property.
void setLocalName(String value)
Sets the value of the localName property.
void setLocalScript(String value)
Sets the value of the localScript property.
void setMiddleName(String value)
Sets the value of the middleName property.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: 1 (0x0000000000000001)

Fields

protected String firstName

protected List<LocalLastNameDataType> lastName

protected String localName

protected String localScript

protected String middleName

Public Constructors

public LocalNameDataType ()

Public Methods

public String getFirstName ()

Gets the value of the firstName property.

Returns
  • possible object is String

public List<LocalLastNameDataType> getLastName ()

Gets the value of the lastName 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 lastName property.

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

    getLastName().add(newItem);
 

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

public String getLocalName ()

Gets the value of the localName property.

Returns
  • possible object is String

public String getLocalScript ()

Gets the value of the localScript property.

Returns
  • possible object is String

public String getMiddleName ()

Gets the value of the middleName property.

Returns
  • possible object is String

public void setFirstName (String value)

Sets the value of the firstName property.

Parameters
value Allowed object is String

public void setLastName (List<LocalLastNameDataType> lastName)

Sets the value of the lastName property.

Parameters
lastName Allowed object is LocalLastNameDataType

public void setLocalName (String value)

Sets the value of the localName property.

Parameters
value Allowed object is String

public void setLocalScript (String value)

Sets the value of the localScript property.

Parameters
value Allowed object is String

public void setMiddleName (String value)

Sets the value of the middleName property.

Parameters
value Allowed object is String