
com.vmware.vim.IntOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for IntOption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IntOption">
* <complexContent>
* <extension base="{urn:vim2}OptionType">
* <sequence>
* <element name="min" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="max" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IntOption", propOrder = {
"min",
"max",
"defaultValue"
})
public class IntOption
extends OptionType
{
protected int min;
protected int max;
protected int defaultValue;
/**
* Gets the value of the min property.
*
*/
public int getMin() {
return min;
}
/**
* Sets the value of the min property.
*
*/
public void setMin(int value) {
this.min = value;
}
/**
* Gets the value of the max property.
*
*/
public int getMax() {
return max;
}
/**
* Sets the value of the max property.
*
*/
public void setMax(int value) {
this.max = value;
}
/**
* Gets the value of the defaultValue property.
*
*/
public int getDefaultValue() {
return defaultValue;
}
/**
* Sets the value of the defaultValue property.
*
*/
public void setDefaultValue(int value) {
this.defaultValue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy