com.sforce.soap.tooling.metadata.FlowElementReferenceOrValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling.metadata;
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 FlowElementReferenceOrValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlowElementReferenceOrValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="booleanValue" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="dateTimeValue" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="dateValue" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="numberValue" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="stringValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlowElementReferenceOrValue", propOrder = {
"booleanValue",
"dateTimeValue",
"dateValue",
"elementReference",
"numberValue",
"stringValue"
})
public class FlowElementReferenceOrValue {
@XmlElement(nillable = true)
protected Boolean booleanValue;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateTimeValue;
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dateValue;
protected String elementReference;
@XmlElement(nillable = true)
protected Double numberValue;
protected String stringValue;
/**
* Gets the value of the booleanValue property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBooleanValue() {
return booleanValue;
}
/**
* Sets the value of the booleanValue property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBooleanValue(Boolean value) {
this.booleanValue = value;
}
/**
* Gets the value of the dateTimeValue property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDateTimeValue() {
return dateTimeValue;
}
/**
* Sets the value of the dateTimeValue property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDateTimeValue(XMLGregorianCalendar value) {
this.dateTimeValue = value;
}
/**
* Gets the value of the dateValue property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDateValue() {
return dateValue;
}
/**
* Sets the value of the dateValue property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDateValue(XMLGregorianCalendar value) {
this.dateValue = value;
}
/**
* Gets the value of the elementReference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getElementReference() {
return elementReference;
}
/**
* Sets the value of the elementReference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setElementReference(String value) {
this.elementReference = value;
}
/**
* Gets the value of the numberValue property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getNumberValue() {
return numberValue;
}
/**
* Sets the value of the numberValue property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setNumberValue(Double value) {
this.numberValue = value;
}
/**
* Gets the value of the stringValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStringValue() {
return stringValue;
}
/**
* Sets the value of the stringValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStringValue(String value) {
this.stringValue = value;
}
}