com.sforce.soap.partner.DescribeNounResult Maven / Gradle / Ivy
package com.sforce.soap.partner;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DescribeNounResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeNounResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="caseValues" type="{urn:partner.soap.sforce.com}NameCaseValue" maxOccurs="unbounded" minOccurs="0"/>
* <element name="developerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="gender" type="{urn:partner.soap.sforce.com}Gender"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="pluralAlias" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="startsWith" type="{urn:partner.soap.sforce.com}StartsWith"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeNounResult", propOrder = {
"caseValues",
"developerName",
"gender",
"name",
"pluralAlias",
"startsWith"
})
public class DescribeNounResult {
protected List caseValues;
@XmlElement(required = true)
protected String developerName;
@XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "string")
protected Gender gender;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true, nillable = true)
protected String pluralAlias;
@XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "string")
protected StartsWith startsWith;
/**
* Gets the value of the caseValues 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 caseValues property.
*
*
* For example, to add a new item, do as follows:
*
* getCaseValues().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NameCaseValue }
*
*
*/
public List getCaseValues() {
if (caseValues == null) {
caseValues = new ArrayList();
}
return this.caseValues;
}
/**
* Gets the value of the developerName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeveloperName() {
return developerName;
}
/**
* Sets the value of the developerName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeveloperName(String value) {
this.developerName = value;
}
/**
* Gets the value of the gender property.
*
* @return
* possible object is
* {@link Gender }
*
*/
public Gender getGender() {
return gender;
}
/**
* Sets the value of the gender property.
*
* @param value
* allowed object is
* {@link Gender }
*
*/
public void setGender(Gender value) {
this.gender = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the pluralAlias property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPluralAlias() {
return pluralAlias;
}
/**
* Sets the value of the pluralAlias property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPluralAlias(String value) {
this.pluralAlias = value;
}
/**
* Gets the value of the startsWith property.
*
* @return
* possible object is
* {@link StartsWith }
*
*/
public StartsWith getStartsWith() {
return startsWith;
}
/**
* Sets the value of the startsWith property.
*
* @param value
* allowed object is
* {@link StartsWith }
*
*/
public void setStartsWith(StartsWith value) {
this.startsWith = value;
}
}