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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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


/**
 * 

Java class for PerfInterval complex type. * *

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

 * <complexType name="PerfInterval">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="samplingPeriod" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="length" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="level" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PerfInterval", propOrder = { "key", "samplingPeriod", "name", "length", "level", "enabled" }) public class PerfInterval extends DynamicData { protected int key; protected int samplingPeriod; @XmlElement(required = true) protected String name; protected int length; protected Integer level; protected boolean enabled; /** * Gets the value of the key property. * */ public int getKey() { return key; } /** * Sets the value of the key property. * */ public void setKey(int value) { this.key = value; } /** * Gets the value of the samplingPeriod property. * */ public int getSamplingPeriod() { return samplingPeriod; } /** * Sets the value of the samplingPeriod property. * */ public void setSamplingPeriod(int value) { this.samplingPeriod = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the length property. * */ public int getLength() { return length; } /** * Sets the value of the length property. * */ public void setLength(int value) { this.length = value; } /** * Gets the value of the level property. * * @return * possible object is * {@link Integer } * */ public Integer getLevel() { return level; } /** * Sets the value of the level property. * * @param value * allowed object is * {@link Integer } * */ public void setLevel(Integer value) { this.level = value; } /** * Gets the value of the enabled property. * */ public boolean isEnabled() { return enabled; } /** * Sets the value of the enabled property. * */ public void setEnabled(boolean value) { this.enabled = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy