![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.NumericRange 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 NumericRange complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NumericRange">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="start" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="end" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NumericRange", propOrder = {
"start",
"end"
})
public class NumericRange
extends DynamicData
{
protected int start;
protected int end;
/**
* Gets the value of the start property.
*
*/
public int getStart() {
return start;
}
/**
* Sets the value of the start property.
*
*/
public void setStart(int value) {
this.start = value;
}
/**
* Gets the value of the end property.
*
*/
public int getEnd() {
return end;
}
/**
* Sets the value of the end property.
*
*/
public void setEnd(int value) {
this.end = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy