com.sforce.soap.tooling.NumberValue 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;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for NumberValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NumberValue">
* <complexContent>
* <extension base="{urn:tooling.soap.sforce.com}StateValue">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}double"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NumberValue", propOrder = {
"value"
})
public class NumberValue
extends StateValue
{
protected double value;
/**
* Gets the value of the value property.
*
*/
public double getValue() {
return value;
}
/**
* Sets the value of the value property.
*
*/
public void setValue(double value) {
this.value = value;
}
}