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

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

The 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 CpuIncompatible1ECX complex type. * *

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

 * <complexType name="CpuIncompatible1ECX">
 *   <complexContent>
 *     <extension base="{urn:vim25}CpuIncompatible">
 *       <sequence>
 *         <element name="sse3" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="ssse3" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="sse41" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="sse42" 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 = "CpuIncompatible1ECX", propOrder = { "sse3", "ssse3", "sse41", "sse42", "other", "otherOnly" }) public class CpuIncompatible1ECX extends CpuIncompatible { protected boolean sse3; protected boolean ssse3; protected boolean sse41; protected boolean sse42; protected boolean other; protected boolean otherOnly; /** * Gets the value of the sse3 property. * */ public boolean isSse3() { return sse3; } /** * Sets the value of the sse3 property. * */ public void setSse3(boolean value) { this.sse3 = value; } /** * Gets the value of the ssse3 property. * */ public boolean isSsse3() { return ssse3; } /** * Sets the value of the ssse3 property. * */ public void setSsse3(boolean value) { this.ssse3 = value; } /** * Gets the value of the sse41 property. * */ public boolean isSse41() { return sse41; } /** * Sets the value of the sse41 property. * */ public void setSse41(boolean value) { this.sse41 = value; } /** * Gets the value of the sse42 property. * */ public boolean isSse42() { return sse42; } /** * Sets the value of the sse42 property. * */ public void setSse42(boolean value) { this.sse42 = 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