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

com.vmware.vim25.FloatOption Maven / Gradle / Ivy

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for FloatOption complex type. * *

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

 * <complexType name="FloatOption">
 *   <complexContent>
 *     <extension base="{urn:vim25}OptionType">
 *       <sequence>
 *         <element name="min" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="max" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *         <element name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FloatOption", propOrder = { "min", "max", "defaultValue" }) public class FloatOption extends OptionType { protected float min; protected float max; protected float defaultValue; /** * Gets the value of the min property. * */ public float getMin() { return min; } /** * Sets the value of the min property. * */ public void setMin(float value) { this.min = value; } /** * Gets the value of the max property. * */ public float getMax() { return max; } /** * Sets the value of the max property. * */ public void setMax(float value) { this.max = value; } /** * Gets the value of the defaultValue property. * */ public float getDefaultValue() { return defaultValue; } /** * Sets the value of the defaultValue property. * */ public void setDefaultValue(float value) { this.defaultValue = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy