com.softlayer.api.service.container.graph.plot.Coordinate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api.service.container.graph.plot;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import java.math.BigDecimal;
/**
* @see SoftLayer_Container_Graph_Plot_Coordinate
*/
@ApiType("SoftLayer_Container_Graph_Plot_Coordinate")
public class Coordinate extends Entity {
@ApiProperty(canBeNullOrNotSet = true)
protected BigDecimal xValue;
public BigDecimal getXValue() {
return xValue;
}
public void setXValue(BigDecimal xValue) {
xValueSpecified = true;
this.xValue = xValue;
}
protected boolean xValueSpecified;
public boolean isXValueSpecified() {
return xValueSpecified;
}
public void unsetXValue() {
xValue = null;
xValueSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected BigDecimal yValue;
public BigDecimal getYValue() {
return yValue;
}
public void setYValue(BigDecimal yValue) {
yValueSpecified = true;
this.yValue = yValue;
}
protected boolean yValueSpecified;
public boolean isYValueSpecified() {
return yValueSpecified;
}
public void unsetYValue() {
yValue = null;
yValueSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected BigDecimal zValue;
public BigDecimal getZValue() {
return zValue;
}
public void setZValue(BigDecimal zValue) {
zValueSpecified = true;
this.zValue = zValue;
}
protected boolean zValueSpecified;
public boolean isZValueSpecified() {
return zValueSpecified;
}
public void unsetZValue() {
zValue = null;
zValueSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask xValue() {
withLocalProperty("xValue");
return this;
}
public Mask yValue() {
withLocalProperty("yValue");
return this;
}
public Mask zValue() {
withLocalProperty("zValue");
return this;
}
}
}