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

com.vmware.vim25.HostDiskDimensionsChs 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 HostDiskDimensionsChs complex type. * *

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

 * <complexType name="HostDiskDimensionsChs">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="cylinder" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="head" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="sector" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostDiskDimensionsChs", propOrder = { "cylinder", "head", "sector" }) public class HostDiskDimensionsChs extends DynamicData { protected long cylinder; protected int head; protected int sector; /** * Gets the value of the cylinder property. * */ public long getCylinder() { return cylinder; } /** * Sets the value of the cylinder property. * */ public void setCylinder(long value) { this.cylinder = value; } /** * Gets the value of the head property. * */ public int getHead() { return head; } /** * Sets the value of the head property. * */ public void setHead(int value) { this.head = value; } /** * Gets the value of the sector property. * */ public int getSector() { return sector; } /** * Sets the value of the sector property. * */ public void setSector(int value) { this.sector = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy