
com.vmware.vim25.VirtualMachineVideoCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
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 VirtualMachineVideoCard complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineVideoCard">
* <complexContent>
* <extension base="{urn:vim25}VirtualDevice">
* <sequence>
* <element name="videoRamSizeInKB" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="numDisplays" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="useAutoDetect" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="enable3DSupport" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineVideoCard", propOrder = {
"videoRamSizeInKB",
"numDisplays",
"useAutoDetect",
"enable3DSupport"
})
public class VirtualMachineVideoCard
extends VirtualDevice
{
protected Long videoRamSizeInKB;
protected Integer numDisplays;
protected Boolean useAutoDetect;
protected Boolean enable3DSupport;
/**
* Gets the value of the videoRamSizeInKB property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getVideoRamSizeInKB() {
return videoRamSizeInKB;
}
/**
* Sets the value of the videoRamSizeInKB property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setVideoRamSizeInKB(Long value) {
this.videoRamSizeInKB = value;
}
/**
* Gets the value of the numDisplays property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumDisplays() {
return numDisplays;
}
/**
* Sets the value of the numDisplays property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumDisplays(Integer value) {
this.numDisplays = value;
}
/**
* Gets the value of the useAutoDetect property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUseAutoDetect() {
return useAutoDetect;
}
/**
* Sets the value of the useAutoDetect property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUseAutoDetect(Boolean value) {
this.useAutoDetect = value;
}
/**
* Gets the value of the enable3DSupport property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnable3DSupport() {
return enable3DSupport;
}
/**
* Sets the value of the enable3DSupport property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnable3DSupport(Boolean value) {
this.enable3DSupport = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy