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

io.deepsense.neptune.apiclient.model.Y Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
/**
 * Neptune API
 * Neptune API
 *
 * OpenAPI spec version: 1.4_c9e4693-SNAPSHOT
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


package io.deepsense.neptune.apiclient.model;

import java.util.Objects;
import com.google.gson.annotations.SerializedName;
import io.deepsense.neptune.apiclient.model.ImageValue;
import io.deepsense.neptune.apiclient.model.InputImage;
import io.deepsense.neptune.apiclient.model.InputImageValue;
import io.deepsense.neptune.apiclient.model.NumericValue;
import io.deepsense.neptune.apiclient.model.OutputImage;
import io.deepsense.neptune.apiclient.model.TextValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;


/**
 * Y
 */
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-12-13T15:34:20.025+01:00")
public class Y   {
  @SerializedName("numericValue")
  private Double numericValue = null;

  @SerializedName("textValue")
  private String textValue = null;

  @SerializedName("imageValue")
  private OutputImage imageValue = null;

  @SerializedName("inputImageValue")
  private InputImage inputImageValue = null;

  public Y numericValue(Double numericValue) {
    this.numericValue = numericValue;
    return this;
  }

   /**
   * Get numericValue
   * @return numericValue
  **/
  @ApiModelProperty(example = "null", value = "")
  public Double getNumericValue() {
    return numericValue;
  }

  public void setNumericValue(Double numericValue) {
    this.numericValue = numericValue;
  }

  public Y textValue(String textValue) {
    this.textValue = textValue;
    return this;
  }

   /**
   * Get textValue
   * @return textValue
  **/
  @ApiModelProperty(example = "null", value = "")
  public String getTextValue() {
    return textValue;
  }

  public void setTextValue(String textValue) {
    this.textValue = textValue;
  }

  public Y imageValue(OutputImage imageValue) {
    this.imageValue = imageValue;
    return this;
  }

   /**
   * Get imageValue
   * @return imageValue
  **/
  @ApiModelProperty(example = "null", value = "")
  public OutputImage getImageValue() {
    return imageValue;
  }

  public void setImageValue(OutputImage imageValue) {
    this.imageValue = imageValue;
  }

  public Y inputImageValue(InputImage inputImageValue) {
    this.inputImageValue = inputImageValue;
    return this;
  }

   /**
   * Get inputImageValue
   * @return inputImageValue
  **/
  @ApiModelProperty(example = "null", value = "")
  public InputImage getInputImageValue() {
    return inputImageValue;
  }

  public void setInputImageValue(InputImage inputImageValue) {
    this.inputImageValue = inputImageValue;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Y Y = (Y) o;
    return Objects.equals(this.numericValue, Y.numericValue) &&
        Objects.equals(this.textValue, Y.textValue) &&
        Objects.equals(this.imageValue, Y.imageValue) &&
        Objects.equals(this.inputImageValue, Y.inputImageValue);
  }

  @Override
  public int hashCode() {
    return Objects.hash(numericValue, textValue, imageValue, inputImageValue);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class Y {\n");
    
    sb.append("    numericValue: ").append(toIndentedString(numericValue)).append("\n");
    sb.append("    textValue: ").append(toIndentedString(textValue)).append("\n");
    sb.append("    imageValue: ").append(toIndentedString(imageValue)).append("\n");
    sb.append("    inputImageValue: ").append(toIndentedString(inputImageValue)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy