All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.tooling.CustomField Maven / Gradle / Ivy

The newest version!

package com.sforce.soap.tooling;

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;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for CustomField complex type. * *

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

 * <complexType name="CustomField">
 *   <complexContent>
 *     <extension base="{urn:tooling.soap.sforce.com}sObject">
 *       <sequence>
 *         <element name="CreatedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
 *         <element name="CreatedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="CreatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="DefaultValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DeveloperName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="EntityDefinition" type="{urn:tooling.soap.sforce.com}EntityDefinition" minOccurs="0"/>
 *         <element name="EntityDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="FullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="InlineHelpText" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="LastModifiedBy" type="{urn:tooling.soap.sforce.com}User" minOccurs="0"/>
 *         <element name="LastModifiedById" type="{urn:tooling.soap.sforce.com}ID" minOccurs="0"/>
 *         <element name="LastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="Length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="ManageableState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="MaskChar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="MaskType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Metadata" type="{urn:metadata.tooling.soap.sforce.com}CustomField" minOccurs="0"/>
 *         <element name="NamespacePrefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Precision" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="RelationshipLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Scale" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="SummaryOperation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="TableEnumOrId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomField", propOrder = { "createdBy", "createdById", "createdDate", "defaultValue", "description", "developerName", "entityDefinition", "entityDefinitionId", "fullName", "inlineHelpText", "lastModifiedBy", "lastModifiedById", "lastModifiedDate", "length", "manageableState", "maskChar", "maskType", "metadata", "namespacePrefix", "precision", "relationshipLabel", "scale", "summaryOperation", "tableEnumOrId" }) public class CustomField extends SObject { @XmlElement(name = "CreatedBy", nillable = true) protected User createdBy; @XmlElement(name = "CreatedById", nillable = true) protected String createdById; @XmlElement(name = "CreatedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; @XmlElement(name = "DefaultValue", nillable = true) protected String defaultValue; @XmlElement(name = "Description", nillable = true) protected String description; @XmlElement(name = "DeveloperName", nillable = true) protected String developerName; @XmlElement(name = "EntityDefinition", nillable = true) protected EntityDefinition entityDefinition; @XmlElement(name = "EntityDefinitionId", nillable = true) protected String entityDefinitionId; @XmlElement(name = "FullName", nillable = true) protected String fullName; @XmlElement(name = "InlineHelpText", nillable = true) protected String inlineHelpText; @XmlElement(name = "LastModifiedBy", nillable = true) protected User lastModifiedBy; @XmlElement(name = "LastModifiedById", nillable = true) protected String lastModifiedById; @XmlElement(name = "LastModifiedDate", nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastModifiedDate; @XmlElement(name = "Length", nillable = true) protected Integer length; @XmlElement(name = "ManageableState", nillable = true) protected String manageableState; @XmlElement(name = "MaskChar", nillable = true) protected String maskChar; @XmlElement(name = "MaskType", nillable = true) protected String maskType; @XmlElement(name = "Metadata", nillable = true) protected com.sforce.soap.tooling.metadata.CustomField metadata; @XmlElement(name = "NamespacePrefix", nillable = true) protected String namespacePrefix; @XmlElement(name = "Precision", nillable = true) protected Integer precision; @XmlElement(name = "RelationshipLabel", nillable = true) protected String relationshipLabel; @XmlElement(name = "Scale", nillable = true) protected Integer scale; @XmlElement(name = "SummaryOperation", nillable = true) protected String summaryOperation; @XmlElement(name = "TableEnumOrId", nillable = true) protected String tableEnumOrId; /** * Gets the value of the createdBy property. * * @return * possible object is * {@link User } * */ public User getCreatedBy() { return createdBy; } /** * Sets the value of the createdBy property. * * @param value * allowed object is * {@link User } * */ public void setCreatedBy(User value) { this.createdBy = value; } /** * Gets the value of the createdById property. * * @return * possible object is * {@link String } * */ public String getCreatedById() { return createdById; } /** * Sets the value of the createdById property. * * @param value * allowed object is * {@link String } * */ public void setCreatedById(String value) { this.createdById = value; } /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = value; } /** * Gets the value of the defaultValue property. * * @return * possible object is * {@link String } * */ public String getDefaultValue() { return defaultValue; } /** * Sets the value of the defaultValue property. * * @param value * allowed object is * {@link String } * */ public void setDefaultValue(String value) { this.defaultValue = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * 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 entityDefinition property. * * @return * possible object is * {@link EntityDefinition } * */ public EntityDefinition getEntityDefinition() { return entityDefinition; } /** * Sets the value of the entityDefinition property. * * @param value * allowed object is * {@link EntityDefinition } * */ public void setEntityDefinition(EntityDefinition value) { this.entityDefinition = value; } /** * Gets the value of the entityDefinitionId property. * * @return * possible object is * {@link String } * */ public String getEntityDefinitionId() { return entityDefinitionId; } /** * Sets the value of the entityDefinitionId property. * * @param value * allowed object is * {@link String } * */ public void setEntityDefinitionId(String value) { this.entityDefinitionId = value; } /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = value; } /** * Gets the value of the inlineHelpText property. * * @return * possible object is * {@link String } * */ public String getInlineHelpText() { return inlineHelpText; } /** * Sets the value of the inlineHelpText property. * * @param value * allowed object is * {@link String } * */ public void setInlineHelpText(String value) { this.inlineHelpText = value; } /** * Gets the value of the lastModifiedBy property. * * @return * possible object is * {@link User } * */ public User getLastModifiedBy() { return lastModifiedBy; } /** * Sets the value of the lastModifiedBy property. * * @param value * allowed object is * {@link User } * */ public void setLastModifiedBy(User value) { this.lastModifiedBy = value; } /** * Gets the value of the lastModifiedById property. * * @return * possible object is * {@link String } * */ public String getLastModifiedById() { return lastModifiedById; } /** * Sets the value of the lastModifiedById property. * * @param value * allowed object is * {@link String } * */ public void setLastModifiedById(String value) { this.lastModifiedById = value; } /** * Gets the value of the lastModifiedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastModifiedDate() { return lastModifiedDate; } /** * Sets the value of the lastModifiedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastModifiedDate(XMLGregorianCalendar value) { this.lastModifiedDate = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link Integer } * */ public Integer getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link Integer } * */ public void setLength(Integer value) { this.length = value; } /** * Gets the value of the manageableState property. * * @return * possible object is * {@link String } * */ public String getManageableState() { return manageableState; } /** * Sets the value of the manageableState property. * * @param value * allowed object is * {@link String } * */ public void setManageableState(String value) { this.manageableState = value; } /** * Gets the value of the maskChar property. * * @return * possible object is * {@link String } * */ public String getMaskChar() { return maskChar; } /** * Sets the value of the maskChar property. * * @param value * allowed object is * {@link String } * */ public void setMaskChar(String value) { this.maskChar = value; } /** * Gets the value of the maskType property. * * @return * possible object is * {@link String } * */ public String getMaskType() { return maskType; } /** * Sets the value of the maskType property. * * @param value * allowed object is * {@link String } * */ public void setMaskType(String value) { this.maskType = value; } /** * Gets the value of the metadata property. * * @return * possible object is * {@link com.sforce.soap.tooling.metadata.CustomField } * */ public com.sforce.soap.tooling.metadata.CustomField getMetadata() { return metadata; } /** * Sets the value of the metadata property. * * @param value * allowed object is * {@link com.sforce.soap.tooling.metadata.CustomField } * */ public void setMetadata(com.sforce.soap.tooling.metadata.CustomField value) { this.metadata = value; } /** * Gets the value of the namespacePrefix property. * * @return * possible object is * {@link String } * */ public String getNamespacePrefix() { return namespacePrefix; } /** * Sets the value of the namespacePrefix property. * * @param value * allowed object is * {@link String } * */ public void setNamespacePrefix(String value) { this.namespacePrefix = value; } /** * Gets the value of the precision property. * * @return * possible object is * {@link Integer } * */ public Integer getPrecision() { return precision; } /** * Sets the value of the precision property. * * @param value * allowed object is * {@link Integer } * */ public void setPrecision(Integer value) { this.precision = value; } /** * Gets the value of the relationshipLabel property. * * @return * possible object is * {@link String } * */ public String getRelationshipLabel() { return relationshipLabel; } /** * Sets the value of the relationshipLabel property. * * @param value * allowed object is * {@link String } * */ public void setRelationshipLabel(String value) { this.relationshipLabel = value; } /** * Gets the value of the scale property. * * @return * possible object is * {@link Integer } * */ public Integer getScale() { return scale; } /** * Sets the value of the scale property. * * @param value * allowed object is * {@link Integer } * */ public void setScale(Integer value) { this.scale = value; } /** * Gets the value of the summaryOperation property. * * @return * possible object is * {@link String } * */ public String getSummaryOperation() { return summaryOperation; } /** * Sets the value of the summaryOperation property. * * @param value * allowed object is * {@link String } * */ public void setSummaryOperation(String value) { this.summaryOperation = value; } /** * Gets the value of the tableEnumOrId property. * * @return * possible object is * {@link String } * */ public String getTableEnumOrId() { return tableEnumOrId; } /** * Sets the value of the tableEnumOrId property. * * @param value * allowed object is * {@link String } * */ public void setTableEnumOrId(String value) { this.tableEnumOrId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy