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

com.softlayer.api.service.container.graph.plot.Coordinate Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
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;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy