![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ClusterEVCManagerEVCState Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
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 ClusterEVCManagerEVCState complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterEVCManagerEVCState">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="supportedEVCMode" type="{urn:vim25}EVCMode" maxOccurs="unbounded"/>
* <element name="currentEVCModeKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="guaranteedCPUFeatures" type="{urn:vim25}HostCpuIdInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="featureCapability" type="{urn:vim25}HostFeatureCapability" maxOccurs="unbounded" minOccurs="0"/>
* <element name="featureMask" type="{urn:vim25}HostFeatureMask" maxOccurs="unbounded" minOccurs="0"/>
* <element name="featureRequirement" type="{urn:vim25}VirtualMachineFeatureRequirement" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterEVCManagerEVCState", propOrder = {
"supportedEVCMode",
"currentEVCModeKey",
"guaranteedCPUFeatures",
"featureCapability",
"featureMask",
"featureRequirement"
})
public class ClusterEVCManagerEVCState
extends DynamicData
{
@XmlElement(required = true)
protected List supportedEVCMode;
protected String currentEVCModeKey;
protected List guaranteedCPUFeatures;
protected List featureCapability;
protected List featureMask;
protected List featureRequirement;
/**
* Gets the value of the supportedEVCMode property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the supportedEVCMode property.
*
*
* For example, to add a new item, do as follows:
*
* getSupportedEVCMode().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EVCMode }
*
*
*/
public List getSupportedEVCMode() {
if (supportedEVCMode == null) {
supportedEVCMode = new ArrayList();
}
return this.supportedEVCMode;
}
/**
* Gets the value of the currentEVCModeKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCurrentEVCModeKey() {
return currentEVCModeKey;
}
/**
* Sets the value of the currentEVCModeKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCurrentEVCModeKey(String value) {
this.currentEVCModeKey = value;
}
/**
* Gets the value of the guaranteedCPUFeatures property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the guaranteedCPUFeatures property.
*
*
* For example, to add a new item, do as follows:
*
* getGuaranteedCPUFeatures().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostCpuIdInfo }
*
*
*/
public List getGuaranteedCPUFeatures() {
if (guaranteedCPUFeatures == null) {
guaranteedCPUFeatures = new ArrayList();
}
return this.guaranteedCPUFeatures;
}
/**
* Gets the value of the featureCapability property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the featureCapability property.
*
*
* For example, to add a new item, do as follows:
*
* getFeatureCapability().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostFeatureCapability }
*
*
*/
public List getFeatureCapability() {
if (featureCapability == null) {
featureCapability = new ArrayList();
}
return this.featureCapability;
}
/**
* Gets the value of the featureMask property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the featureMask property.
*
*
* For example, to add a new item, do as follows:
*
* getFeatureMask().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostFeatureMask }
*
*
*/
public List getFeatureMask() {
if (featureMask == null) {
featureMask = new ArrayList();
}
return this.featureMask;
}
/**
* Gets the value of the featureRequirement property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the featureRequirement property.
*
*
* For example, to add a new item, do as follows:
*
* getFeatureRequirement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VirtualMachineFeatureRequirement }
*
*
*/
public List getFeatureRequirement() {
if (featureRequirement == null) {
featureRequirement = new ArrayList();
}
return this.featureRequirement;
}
}