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

com.vmware.vim25.CpuIncompatible81EDX 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.XmlType;


/**
 * 

Java class for CpuIncompatible81EDX complex type. * *

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

 * <complexType name="CpuIncompatible81EDX">
 *   <complexContent>
 *     <extension base="{urn:vim25}CpuIncompatible">
 *       <sequence>
 *         <element name="nx" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="ffxsr" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="rdtscp" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="lm" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="other" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="otherOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CpuIncompatible81EDX", propOrder = { "nx", "ffxsr", "rdtscp", "lm", "other", "otherOnly" }) public class CpuIncompatible81EDX extends CpuIncompatible { protected boolean nx; protected boolean ffxsr; protected boolean rdtscp; protected boolean lm; protected boolean other; protected boolean otherOnly; /** * Gets the value of the nx property. * */ public boolean isNx() { return nx; } /** * Sets the value of the nx property. * */ public void setNx(boolean value) { this.nx = value; } /** * Gets the value of the ffxsr property. * */ public boolean isFfxsr() { return ffxsr; } /** * Sets the value of the ffxsr property. * */ public void setFfxsr(boolean value) { this.ffxsr = value; } /** * Gets the value of the rdtscp property. * */ public boolean isRdtscp() { return rdtscp; } /** * Sets the value of the rdtscp property. * */ public void setRdtscp(boolean value) { this.rdtscp = value; } /** * Gets the value of the lm property. * */ public boolean isLm() { return lm; } /** * Sets the value of the lm property. * */ public void setLm(boolean value) { this.lm = value; } /** * Gets the value of the other property. * */ public boolean isOther() { return other; } /** * Sets the value of the other property. * */ public void setOther(boolean value) { this.other = value; } /** * Gets the value of the otherOnly property. * */ public boolean isOtherOnly() { return otherOnly; } /** * Sets the value of the otherOnly property. * */ public void setOtherOnly(boolean value) { this.otherOnly = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy