![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.LongOption Maven / Gradle / Ivy
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 LongOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LongOption">
* <complexContent>
* <extension base="{urn:vim25}OptionType">
* <sequence>
* <element name="min" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="max" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LongOption", propOrder = {
"min",
"max",
"defaultValue"
})
public class LongOption
extends OptionType
{
protected long min;
protected long max;
protected long defaultValue;
/**
* Gets the value of the min property.
*
*/
public long getMin() {
return min;
}
/**
* Sets the value of the min property.
*
*/
public void setMin(long value) {
this.min = value;
}
/**
* Gets the value of the max property.
*
*/
public long getMax() {
return max;
}
/**
* Sets the value of the max property.
*
*/
public void setMax(long value) {
this.max = value;
}
/**
* Gets the value of the defaultValue property.
*
*/
public long getDefaultValue() {
return defaultValue;
}
/**
* Sets the value of the defaultValue property.
*
*/
public void setDefaultValue(long value) {
this.defaultValue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy